get_cards_by_list_id
Retrieve all cards from a specified Trello list by providing the list ID. Simplify card management and integration with Trello boards using structured data.
Instructions
Fetch cards from a specific Trello list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | ID of the Trello list |
Input Schema (JSON Schema)
{
"properties": {
"listId": {
"description": "ID of the Trello list",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}