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)
UTILITY SUBCATEGORY
GetBoardId(Name: req
)
Name: req
)Return the ID
of the board; Return false
if the function fail. (No case sensitive)
GetBoardInfo(BoardId: req
)
BoardId: req
)Return the board object
; Return false
if the function fail.
GetCardsOnBoard(BoardId: req
)
BoardId: req
)Return all the cards in the target board (Lua Table); Return false
if the function fail.
GetCardOnBoard(BoardId: req
, Name: req
)
BoardId: req
, Name: req
)Return information about a specific Card in a specific Board (Lua Table); Return false
if the function fail. (No case sensitive)
GetLabelsOnBoard(BoardId: req
)
BoardId: req
)Return all the labels in the target board (Lua Table); Return false
if the function fail.
LISTS SUBCATEGORY
GetListsOnBoard(BoardId: req
)
BoardId: req
)Return all the List in the target Board (Lua Table); Return false
if the function fail.
GetListId(BoardId: req
, Name: req
)
BoardId: req
, Name: req
)Return The ID
of the list in the target Board (String); Return false
if the function fail.
CreateListOnBoard(BoardId: req
, Name: req, Position: opt
)
BoardId: req
, Name: req, Position: opt
)Create a List in a specific Board, Return true
if the function is successful false
if the function fail.
ACTIONS SUBCATEGORY
CreateBoard (Name: req
)
Name: req
)Create a List in a specific Board, Return true
if the function is successful false
if the function fail.
ModifyBoard(BoardId: req, OptionalData: opt
)
BoardId: req, OptionalData: opt
)Modify a Board, Return true
if the function is successful false
if the function fail.
Note that you can remove one of that elements or just don't include the 'OptionalData
' table.
Last updated