API version v1.0
Retrieve the board information
Parameter | Description | Optional | Default |
---|---|---|---|
Board ID | The board id of the specified trello board. |
GET | api:GetBoardInfo(BoardID) |
BoardID = api:GetBoardID("Board Name")
BoardInfo = api:GetBoardInfo(BoardID)
returns a table, except not JSON
{
"id": "4eea4ffc91e31d1746000046",
"name": "Example Board",
"desc": "This board is used in the API examples",
"lists": [{
"id": "4eea4ffc91e31d174600004a",
"name": "To Do Soon"
}, {
"id": "4eea4ffc91e31d174600004b",
"name": "Doing"
}, {
"id": "4eea4ffc91e31d174600004c",
"name": "Done"
}]
}
Rate Limited | True |
Response Format | Table |
Authentication | Key & Token |