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
Example request
{
"content": "Reviewed the affected resources. This should be prioritized for the next sprint."
}Response
The created comment.
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"
}