QVGK's TrelloAPI
  • QVGK's TrelloAPI
  • Getting Started
  • API Modules
    • BoardsAPI
      • :GetBoardByID()
    • ListsAPI
      • :GetListID()
    • CardsAPI
      • :GetCardsInList()
      • :GetCardByName()
      • :CreateCard()
      • :DeleteCard()
  • Legacy Versions
    • V0.14
      • Setting Up
      • API Objects
        • ListsAPI
        • CardsAPI
        • BoardsAPI
Powered by GitBook
On this page
  1. API Modules
  2. BoardsAPI

:GetBoardByID()

Gets a board's information from ID.

Example usage and parameters:

local BoardID = 'w0j1CQz2'

--[[
    @param BoardID string -- The board's ID.
    @return table or false -- Returns board info, or false if fails.
--]]
local Board = BoardsAPI:GetBoardByID(BoardID)

if Board then
    print("The board's name is "..Board.name)
end
PreviousBoardsAPINextListsAPI

Last updated 2 years ago