get-list-cards
Retrieve cards from a specific Trello list using the list ID, with options to include specific card fields and apply filters like 'open', 'closed', or 'all'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Comma-separated list of card fields to include | |
filter | No | Filter for card types (e.g., "open", "closed", "all") | |
listId | Yes | ID of the list to get cards from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"description": "Comma-separated list of card fields to include",
"type": "string"
},
"filter": {
"description": "Filter for card types (e.g., \"open\", \"closed\", \"all\")",
"type": "string"
},
"listId": {
"description": "ID of the list to get cards from",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}