Schede API
Questa pagina descrive tutte le funzioni relative alle schede su Trello.
-- // Richiedi TrelloAPI Modulo
local TrelloAPI = require(game.ServerScriptService:WaitForChild("TrelloAPI"))
-- // Accedi alla categoria
TrelloAPI.CardsAPI.[NomeFunzione]CreateCard(Name, ListId, BoardOptionalData)
TrelloAPI.CardsAPI.CreateCard("NOME_CARD_ESEMPIO", "ID_LISTA", {
["Description"] = "Descrizione Scheda", --> Type: String
["idLabels"] = {'IdLabel1','IdLabel1'}, --> 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