get-list-board
Retrieve detailed board information associated with a specific Trello list by providing the list ID. Includes customizable fields for tailored project management insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Comma-separated list of board fields to include | |
listId | Yes | ID of the list to get board for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"description": "Comma-separated list of board fields to include",
"type": "string"
},
"listId": {
"description": "ID of the list to get board for",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}