get-action-reactions
Retrieve reactions for a specific Trello action, including member and emoji details, to analyze engagement and interactions within your project management workflow.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actionId | Yes | ID of the action | |
emoji | No | Include emoji information for reactions | |
member | No | Include member information for reactions |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actionId": {
"description": "ID of the action",
"type": "string"
},
"emoji": {
"description": "Include emoji information for reactions",
"type": "boolean"
},
"member": {
"description": "Include member information for reactions",
"type": "boolean"
}
},
"required": [
"actionId"
],
"type": "object"
}