Trello API [ReMade] • Use Trello easily in your game!

Hello Developers!

:star: No updates now, but I want to thank you for reaching over 70 sale of the trello API!
We are very happy that our API is being used by Small, Medium and Large Developers, We are also always open to suggestions, or bugs!

Remember to leave a :heart: if you liked this resource.

2 Likes

:warning: • Scams Going Around About Our API.

I recently happened to find our trello API in the toolbox with a name similar to the original one and the same description.

These models are scams, inside there is a script that once requested requires an external module that will infect your game.

The Only And Original Model Is Owned By: Quaerit Services and can be found Here.

Thank you so much for your attention, don’t fall for these scams and first make sure who the models you take come from

:partying_face: Also I Updated the TrelloAPI:

  • Fixed A Bug with Comments API.

PS: Thank you for 85+ Sales! Remember to leave a :heart: to support us!

:rabbit2: Happy Easter!

1 Like

I’d like some event features like “OnCardAdded”, “OnCardDeleted” it’d be really cool to see some events using this API.

:+1: This is a great idea! I will work on it in the next few days as soon as I can.

Greatly appreciated! Thank you

:tada: It’s time to Update!

  • Revambed UpdateCard Function, Due a bug and although that function was limited I decided to revamp it.
  • Updated Plugin.

As explained in the documentation you can also not include one or more of these parameters, and you can also not include the BoardOptionalData parameter, The Request will be sent but The card will not be updated.

New structure of the function:

  • IdLabels is an array of the labels that you want to put in a specific card, if you want to clean all the labels in a card Just include the parameter with the empty table
    Ex. --> ["idLabels"] = {},

  • Closed means It means if you want to archive that card, true it will archive it and false It will remove it from the archive.

Thank you to @inaguraI for the suggestion of improving this function.


➤ An Update To the Events Request by @lustaeris Events are quite a complicated thing that I am working on but I am not sure when they will be released, I want to make sure before releasing them that they are efficient.


:star: We Finaly Did it! 100+ Sales

Thank you very much to all the people Who supported this project, Remember to be careful of scam TrelloAPI Model that contain the same name and description of this API The unique and original and the one owned by Quaerit Services and can be found Here.

:+1: To help other players recognize the real one, remember to like the model on roblox!

If there are any bugs or you have ideas for improving the code, feel free to post them here, under this message!

How i can Update the TrelloAPI Module? Re-insert it from the toolbox as a Model or update the plugin and re-insert it!

4 Likes

Damn amazing work you guys deserve more for this. I was wondering how do I create a Card in the Trello?

Fixed on Private Message, thank you!

1 Like

Does this still work? I tried using it and it doesn’t work.

Fixed On Our cominication server, let us know if you have others issue! Here or on Comunication Server.

I agree this is very cool and Im going to use this in my new game.

Am I missing something, because I am confused, what does this module do exactly?

This Module will help you interact with Trello Easily with pre-built functions.
For many developers the trello API can be complex so I built this API with pre-made functions to interact with trello, Ex: Create Card, Fetch Cards On List, Add Comments to Cards etc…

1 Like

Thanks for explaining! I never heard of trello before so I was confused.

Hello there! Can I have an updated version of the Training List model. Can you also provide information on how to set it up for both Trello and Roblox.

Thanks in advance!
@Kalmai221P

:tada: Update!

  • Updated UpdateCardFunction.

New Structure:
BoardOptionalData Type: Table || Example

  {
    ["Name"] = "My New Card Name", Type: String
	["Description"] = "My fantastic Description", Type: String
	["idLabels"] = {"ID1","ID2"}, --> Type: Array (Table)
	["Closed"] = true --> Type: Boolean (Table),
	['idList'] = "IDNewList" -- // NEW!
  }

Now you can add idList Parameter and easily move your card to another list.

Example Usage:

local TrelloAPI = require(script.Parent.TrelloAPI)

TrelloAPI.CardsAPI.UpdateCard("Card_Id",{['idList'] = "New_List_Id"})

Thank you to @Da_Fr0st for the suggestion.


:star: Also Thank you for reaching 185+ Sales!

Support us by click a :heart: on our Original Post

5 Likes

I have another suggestion. You could add a dates function to add, edit and remove dates from cards. The images below if what I am referring to.

1 Like

Can someone post an example of how to use the TrelloAPI:AddCard() function…? I am confused as to what information should go into the parenthesis.

1 Like

This is the code i’m using, but i’m getting HTTP 400 (Bad Request) for some reason.

-- // Require TrelloAPI
local TrelloAPI = require(game.ServerScriptService:WaitForChild("TrelloAPI"))
local BoardID = TrelloAPI.BoardsAPI.GetBoardID("Roblox Trello")
local ListId = TrelloAPI.BoardsAPI.GetListID(BoardID, "VerifiedUsers")

TrelloAPI.CardsAPI.CreateCard("Test123", ListId, {
	["Description"] = "Your Fantastic Description",
	["idLabels"] = {"Id1", "Id2"},
	["AttachmentLink"] = "https://www.roblox.com"
})

@Sonostrano20 Can you help me to what i did wrong here?

If you are using this exact code idLabels is wrong:

Since you need to replace “Id1” or “Id2” with you’re LabelsId.

1 Like