: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

Last updated