Action Item Comment

Add a comment

Add a comment to an action item.

The comment author is always set from the authenticated user's bearer token.

post/action_item/{id}/comments

Path parameters

idstring required

The action item ID.

Request body

contentstring required

The comment text. Supports Markdown.

Example request

{
  "content": "Reviewed the affected resources. This should be prioritized for the next sprint."
}

Response

The created comment.

idstring

The comment ID.

authorstring

The comment author.

contentstring

The comment text.

created_atstring date-time

Creation timestamp.

Example response

{
  "id": "cmt123AbCdEf",
  "author": "jane@example.com",
  "content": "This should be prioritized for the next sprint.",
  "created_at": "2026-04-06T14:30:00.000Z"
}

Changes