add-comments
Add comments to multiple Trello cards programmatically using JSON input, streamlining project communication and updates in integrated workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comments | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comments": {
"items": {
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to comment on",
"type": "string"
},
"text": {
"description": "Comment text",
"type": "string"
}
},
"required": [
"cardId",
"text"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"comments"
],
"type": "object"
}