Skip to content

Comments

Read and add comments on a task’s activity rail.

GET

/tasks/{id}/comments

Lists comments on a task, oldest first.

Query parameters

  • limitintegeroptionalPage size, default 25, max 100
  • offsetintegeroptionalNumber of results to skip, default 0
  • fieldsstringoptionalComma-separated field names to trim the response to
POST

/tasks/{id}/comments

Adds a comment as the key’s user.

Body parameters

  • contentstringrequiredComment text
View example
Add a comment
curl -X POST https://klaarin.com/api/v1/tasks/318/comments \
  -H "Authorization: Bearer kl_live_9f2ac…" \
  -H "Content-Type: application/json" \
  -d '{ "content": "Deployed to staging, please review." }'
Response
{
  "id": 902,
  "content": "Deployed to staging, please review.",
  "author": { "id": "clx...", "name": "Bayu Pratama", "email": "bayu@floothink.com" },
  "createdAt": "2026-07-30T09:14:00Z"
}