Boards API

This page describes all the functions concerning the boards on Trello.

How can I access the functions of this category?

[ 1 ] - Open a ServerScript [ 2 ] - Look at the following script. (Example script to understand how to access a category and to a function)

-- // Require TrelloAPI Module
local TrelloAPI = require(game.ServerScriptService:WaitForChild("TrelloAPI"))

-- // Access to the category
TrelloAPI.BoardsAPI.[FunctionName]

GetBoardID(Name)

Return the ID of the board, Return false if the function fail.

TrelloAPI.BoardsAPI.GetBoardID("EXAMPLE_BOARD_NAME")

GetListID(BoardId, ListName)

Return The ID of the list in the target Board (String), Return false if the function fail.

TrelloAPI.BoardsAPI.GetListID("BOARD_ID", "EXAMPLE_LIST_NAME")

GetListsOnBoard(BoardId)

Return all the List in the target Board (Lua Table), Return false if the function fail.

TrelloAPI.BoardsAPI.GetListsOnBoard("BOARD_ID")

GetBoardInfo(BoardId)

Return Board Information (Lua Table), Return false if the function fail.

TrelloAPI.BoardsAPI.GetBoardInfo("BOARD_ID")

GetCardsOnBoard(BoardId)

Return all the cards in the target board (Lua Table), Return false if the function fail.

TrelloAPI.BoardsAPI.GetCardsOnBoard("BOARD_ID")

GetCardOnBoard(BoardId, Name)

Return information about a specific Card in a specific Board (Lua Table), Return false if the function fail.

TrelloAPI.BoardsAPI.GetCardOnBoard("BOARD_ID", "EXAMPLE_NAME")

GetLabelsOnBoard(BoardId)

Return all the labels in the target board (Lua Table), Return false if the function fail.

TrelloAPI.BoardsAPI.GetLabelsOnBoard("BOARD_ID")

CreateListOnBoard(BoardId, Name)

Create a List in a specific Board, Return true if the function is successful false if the function fail.

TrelloAPI.BoardsAPI.CreateListOnBoard("BOARD_ID", "EXAMPLE_NAME")

CreateBoard (Name)

Create a List in a specific Board, Return true if the function is successful false if the function fail.

TrelloAPI.BoardsAPI.CreateBoard("EXAMPLE_NAME")

Last updated