get-list-actions
Retrieve actions for a specific Trello list using a defined filter to track updates, comments, or changes in project management workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | Filter for action types | |
listId | Yes | ID of the list to get actions for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filter": {
"description": "Filter for action types",
"type": "string"
},
"listId": {
"description": "ID of the list to get actions for",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}