list_boards
Retrieve all boards for a specific team with their IDs, titles, and properties to organize and access project workspaces.
Instructions
List all boards for a team. Returns an array of boards with their IDs, titles, and properties.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| teamId | No | The team ID to list boards for (default: "0" for default team) | 0 |
Input Schema (JSON Schema)
{
"properties": {
"teamId": {
"default": "0",
"description": "The team ID to list boards for (default: \"0\" for default team)",
"type": "string"
}
},
"type": "object"
}