Atlassian Trello Comment

Atlassian Trello Comment

Certified

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

yaml
type: io.kestra.plugin.trello.cards.Comment

Add a comment to a Trello card

yaml
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

Trello API Key

API key used to authenticate Trello requests. Render this from a secret

Trello API Token

API token used to authenticate Trello requests. Render this from a secret

Card ID

Card ID to comment on

Comment Text

Comment text sent to Trello

Defaulthttps://api.trello.com

Base API URL

Base URL for Trello API requests. Defaults to https://api.trello.com; override only for compatible proxies or tests

Default1

API Version

Trello REST API version appended to the base URL. Defaults to 1

Reference (ref) of the pluginDefaults to apply to this task.