search_boards
Find boards by name or keyword within a specific team to quickly locate relevant project boards and workspaces for efficient task management.
Instructions
Search for boards by name or keyword within a team.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| teamId | No | The team ID to search within (default: "0" for default team) | 0 |
| searchTerm | Yes | The search term to find boards |
Input Schema (JSON Schema)
{
"properties": {
"searchTerm": {
"description": "The search term to find boards",
"type": "string"
},
"teamId": {
"default": "0",
"description": "The team ID to search within (default: \"0\" for default team)",
"type": "string"
}
},
"required": [
"searchTerm"
],
"type": "object"
}