/members/me/boards
| Param | Type | Required | Description |
|---|---|---|---|
| filter | string | optional | Board filter: 'all', 'open' (default), 'closed', 'members', 'organization' |
| fields | string | optional | Comma-separated board fields to return, e.g. 'name,url,closed' |
/boards/{board_id}
| Param | Type | Required | Description |
|---|---|---|---|
| board_id | string | required | Board ID (or shortLink from its URL) |
| fields | string | optional | Comma-separated board fields to return, e.g. 'name,url,desc' |
/boards
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | Board name |
| desc | string | optional | Board description |
| defaultLists | boolean | optional | Whether to create default To Do/Doing/Done lists (default true) |
/boards/{board_id}/lists
| Param | Type | Required | Description |
|---|---|---|---|
| board_id | string | required | Board ID |
| cards | string | optional | 'none' (default), 'open', 'closed', or 'all' — include each list's cards |
/lists
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | List name |
| idBoard | string | required | Board ID to create the list on |
| pos | string | optional | Position: 'top', 'bottom' (default), or a positive number |
/lists/{list_id}/cards
| Param | Type | Required | Description |
|---|---|---|---|
| list_id | string | required | List ID |
| fields | string | optional | Comma-separated card fields to return, e.g. 'name,due,idMembers' |
/cards/{card_id}
| Param | Type | Required | Description |
|---|---|---|---|
| card_id | string | required | Card ID (or shortLink from its URL) |
| fields | string | optional | Comma-separated card fields to return, e.g. 'name,desc,due' |
/cards
| Param | Type | Required | Description |
|---|---|---|---|
| idList | string | required | List ID to create the card in |
| name | string | required | Card title |
| desc | string | optional | Card description |
| due | string | optional | Due date, ISO 8601 (e.g. '2026-08-01T17:00:00.000Z') |
| idMembers | array | optional | Member IDs to assign to the card |
| pos | string | optional | Position: 'top', 'bottom' (default), or a positive number |
/cards/{card_id}
| Param | Type | Required | Description |
|---|---|---|---|
| card_id | string | required | Card ID to update |
| name | string | optional | New card title |
| desc | string | optional | New card description |
| closed | boolean | optional | Set true to archive the card |
| idList | string | optional | Move the card to this list ID |
| due | string | optional | New due date, ISO 8601, or null to clear |
| dueComplete | boolean | optional | Mark the due date as complete |
/cards/{card_id}/actions/comments
| Param | Type | Required | Description |
|---|---|---|---|
| card_id | string | required | Card ID to comment on |
| text | string | required | Comment text |