Add task batch comments

POST /actions/tasks/{task_id}/batch-comment

Creates new comments for given task. Each comment requires a text, a task_status and a person as arguments. Can include preview files and attachments.

Path parameters

  • task_id string(uuid) Required

    Task unique identifier

multipart/form-data

Body Required

  • comments string Required

    JSON string containing array of comments

Responses

  • 201 application/json

    New comments created

POST /actions/tasks/{task_id}/batch-comment
curl \
 --request POST 'http://api.example.com/actions/tasks/a24a6ea4-ce75-4665-a070-57453082c25/batch-comment' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: multipart/form-data" \
 --form "comments=[{"text": "Good work", "task_status_id": "uuid"}]"
Response examples (201)
[
  {}
]