update-action
Update specified Trello comment actions by modifying their text content using the action ID and new text input. Streamline project management with precise edits.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actionId | Yes | ID of the action to update | |
text | Yes | New text content for the comment action |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actionId": {
"description": "ID of the action to update",
"type": "string"
},
"text": {
"description": "New text content for the comment action",
"type": "string"
}
},
"required": [
"actionId",
"text"
],
"type": "object"
}