Cards API
This page describes all the functions concerning the Cards on Trello.
-- // Require TrelloAPI Module
local TrelloAPI = require(game.ServerScriptService:WaitForChild("TrelloAPI"))
-- // Access to the category
TrelloAPI.CardsAPI.[FunctionName]CreateCard(Name, ListId, BoardOptionalData)
TrelloAPI.CardsAPI.CreateCard("EXAMPLE_CARD_NAME", "ID_LIST", {
["Description"] = "You're Fantastic Card Description", --> Type: String
["idLabels"] = {'MyLabels1','MyLabel2'}, --> Type: Array (Table)
["AttachmentLink"] = "https://roblox.com" --> Type: String
})UpdateCard(CardId, BoardOptionalData)
DeleteCard(CardId)
CreateAttachmentOnCard(CardId,AttachmentUrl)
DeleteAttachmentOnCard(CardId,Attachmentid)
GetCardOnList(BoardId,CardName)
GetCardsOnList(ListId)
GetAttachmentsOnCard(CardId)
Last updated