List work-item comments
Lists active collaboration comments for a canonical Execute work item.
GET
/api/v1/work-items/:id/commentsAuthorization
work-items:readapi key scoperequiredRequired scope when calling with an API key.
Path parameters
idstringrequiredCanonical work-item ID
Example: work_01k2...
Request
curl -X GET "https://www.digitalstack360.com/api/v1/work-items/work_01k2.../comments" \
-H "Authorization: Bearer $DS_API_KEY"Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.
Response
200 OK
{
"data": [
{
"id": "comment_01k7...",
"work_item_id": "work_01k2...",
"author_user_id": "user_123",
"body_preview": "Implementation started...",
"mentions": [],
"created_at": "2026-07-15T18:22:04Z"
}
]
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks work-items:read scope
404
not_foundWork item does not exist or is outside the resolved workspace