get-tickets-by-list
Retrieve Trello cards from a specific list, allowing users to manage tasks by specifying a list ID and optional limit on the number of cards returned.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of cards to return | |
listId | Yes | ID of the list to get tickets from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of cards to return",
"type": "number"
},
"listId": {
"description": "ID of the list to get tickets from",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}