Skip to main content
Comments allow team members to discuss and collaborate on work items by adding text, mentions, and attachments. Learn more about Work Item Comments →
Deprecation noticeWe are deprecating all /api/v1/.../issues/ endpoints in favor of /api/v1/.../work-items/.End of support
31st March 2026
What you need to do
To ensure uninterrupted service, replace all /issues/ references with /work-items/ in your codebase before the support end date.

The Comments object

Attributes
  • id uuid Unique identifier for the comment
  • created_at timestamp The timestamp when the comment was created
  • updated_at timestamp The timestamp when the comment was last updated
  • deleted_at timestamp or null The timestamp when the comment was deleted (if deleted)
  • edited_at timestamp or null The timestamp when the comment was last edited
  • comment_html string HTML string version of the comment
  • comment_stripped string Stripped string version of the comment
  • comment_json object JSON object version of the comment
  • attachments string[] Array of attachment URLs
  • access string If the comment should be visible externally also if the project is published or not. Takes in two values
    • INTERNAL
    • EXTERNAL
  • external_source string External source identifier
  • external_id string External ID from the external source
  • is_member boolean Whether the current user is a member of the project
  • created_by , updated_by uuid These values are auto saved and represent the id of the user that created or updated the comment
  • project uuid It contains project uuid which is automatically saved.
  • workspace uuid It contains workspace uuid which is automatically saved
  • issue uuid The work item the comment is attached to
  • actor uuid UUID of the user who commented.