get-action
Retrieve specific Trello action details by ID, including customizable fields, member data, and entity information, for enhanced project management integration.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actionId | Yes | ID of the action to retrieve | |
| display | No | Include display information | |
| entities | No | Include entity information | |
| fields | No | Comma-separated list of fields to include | |
| member | No | Include member information | |
| memberCreator | No | Include member creator information | |
| memberCreatorFields | No | Comma-separated list of member creator fields | |
| memberFields | No | Comma-separated list of member fields |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actionId": {
"description": "ID of the action to retrieve",
"type": "string"
},
"display": {
"description": "Include display information",
"type": "boolean"
},
"entities": {
"description": "Include entity information",
"type": "boolean"
},
"fields": {
"description": "Comma-separated list of fields to include",
"type": "string"
},
"member": {
"description": "Include member information",
"type": "boolean"
},
"memberCreator": {
"description": "Include member creator information",
"type": "boolean"
},
"memberCreatorFields": {
"description": "Comma-separated list of member creator fields",
"type": "string"
},
"memberFields": {
"description": "Comma-separated list of member fields",
"type": "string"
}
},
"required": [
"actionId"
],
"type": "object"
}