
Atlassian Trello Comment
CertifiedAdd comments to Trello cards
Atlassian Trello Comment
Add comments to Trello cards
Posts one comment to an existing Trello card and returns the created comment ID. The text property is rendered, URL-encoded, and sent as a query parameter, so avoid putting secrets in comments
type: io.kestra.plugin.trello.cards.CommentExamples
Add a comment to a Trello card
id: trello_add_comment
namespace: company.team
tasks:
- id: add_comment
type: io.kestra.plugin.trello.cards.Comment
apiKey: "{{ secret('TRELLO_API_KEY') }}"
apiToken: "{{ secret('TRELLO_API_TOKEN') }}"
cardId: "5abbe4b7ddc1b351ef961414"
text: "This is my comment on the card"
Properties
apiKey *Requiredstring
Trello API Key
API key used to authenticate Trello requests. Render this from a secret
apiToken *Requiredstring
Trello API Token
API token used to authenticate Trello requests. Render this from a secret
cardId *Requiredstring
Card ID
Card ID to comment on
text *Requiredstring
Comment Text
Comment text sent to Trello
apiBaseUrl string
https://api.trello.comBase API URL
Base URL for Trello API requests. Defaults to https://api.trello.com; override only for compatible proxies or tests
apiVersion string
1API Version
Trello REST API version appended to the base URL. Defaults to 1
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.