get-lists
Retrieve all lists from a specific Trello board using the board ID, enabling quick access to organized task data for enhanced project management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the Trello board to get lists from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "ID of the Trello board to get lists from",
"type": "string"
}
},
"required": [
"boardId"
],
"type": "object"
}