create
Creates a new board in the specified organization.The organization ID where the board will be created
The title of the board
Returns
Returns the board ID of the newly created board.The unique identifier for the created board
Response Schema
Example
Errors
- Unauthorized: Thrown when the user is not authenticated
update
Updates the title of an existing board.The ID of the board to update
The new title for the board (max 60 characters)
Returns
Returnsnull on successful update.
Example
Errors
- Unauthorized: Thrown when the user is not authenticated
- Title is required: Thrown when the title is empty or only whitespace
- Title cannot be more than 60 characters: Thrown when the title exceeds the maximum length
remove
Deletes a board and removes it from all user favorites.The ID of the board to delete
Returns
Returnsvoid on successful deletion.
Example
Behavior
- Automatically removes the board from any user’s favorites before deletion
- Permanently deletes the board from the database
Errors
- Unauthorized: Thrown when the user is not authenticated
get
Retrieves a single board by its ID.The ID of the board to retrieve
Returns
The board object if found, or
null if the board doesn’t exist