For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
Get startedAPI referenceImplementation
Get startedAPI referenceImplementation
    • Overview
          • The Comment object
          • GET/comments
          • POST/comments
          • GET/comments/{id}
          • GET/comments/meta/post

Get started

  • Overview
  • Introduction
  • Unified API
  • Linked Account
  • Merge Link
  • Use cases

Implementation

  • Sandboxes
  • SDKs
  • API access
  • Syncing data
  • Writing data
  • Data minimization
  • Supplemental data
  • Errors
  • Integration metadata

API reference

  • ATS
  • HRIS
  • Accounting
  • Ticketing
  • CRM
  • File Storage
  • Knowledge Base
  • Chat

Resources

  • Help Center
  • Merge.dev
  • Changelog
© Merge 2026Terms of usePrivacy policy
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
Common ModelsComments

The Comment object

The Comment Object
1{
2 "id": "string",
3 "remote_id": "string",
4 "created_at": "2023-01-01T00:00:00Z",
5 "modified_at": "2023-01-01T00:00:00Z",
6 "user": "string",
7 "contact": "string",
8 "body": "string",
9 "html_body": "string",
10 "ticket": "string",
11 "is_private": true,
12 "remote_created_at": "2023-01-01T00:00:00Z",
13 "remote_was_deleted": true,
14 "field_mappings": {
15 "organization_defined_targets": {
16 "string": {}
17 },
18 "linked_account_defined_targets": {
19 "string": {}
20 }
21 },
22 "remote_data": [
23 {
24 "path": "string",
25 "data": {}
26 }
27 ]
28}
Was this page helpful?
Previous

/collections/{id}

Next

/comments

The Comment object is used to represent a comment on a ticket.

idstringOptionalRead-onlyformat: "uuid"
remote_idstring or nullOptional

The third-party API ID of the matching object.

created_atdatetimeOptionalRead-only
The datetime that this object was created by Merge.
modified_atdatetimeOptionalRead-only
The datetime that this object was modified by Merge.
userstring or nullOptionalformat: "uuid"

The author of the Comment, if the author is a User. If the third party does not support specifying an author, we will append "[Posted on behalf of {name}]" to the comment.

contactstring or nullOptionalformat: "uuid"

The author of the Comment, if the author is a Contact.If the third party does not support specifying an author, we will append "[Posted on behalf of {name}]" to the comment.

bodystring or nullOptional
The comment's text body.
html_bodystring or nullOptional
The comment's text body formatted as html.
ticketstring or nullOptionalformat: "uuid"
The ticket associated with the comment.
is_privateboolean or nullOptional
Whether or not the comment is internal.
remote_created_atdatetime or nullOptional
When the third party's comment was created.
remote_was_deletedbooleanOptionalRead-only

Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. Learn more.

field_mappingsobject or nullOptionalRead-only
remote_datalist of objects or nullOptionalRead-only