{ "opencollection": "1.0.0", "info": { "name": "Channel Accounts Comments API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Comments", "type": "folder" }, "items": [ { "info": { "name": "Get comment", "type": "http" }, "http": { "method": "GET", "url": "https://api2.frontapp.com/comments/:comment_id", "params": [ { "name": "comment_id", "value": "", "type": "path", "description": "The Comment ID" } ] }, "docs": "Fetches a comment.\n\nRequired scope: `comments:read`" }, { "info": { "name": "Update comment", "type": "http" }, "http": { "method": "PATCH", "url": "https://api2.frontapp.com/comments/:comment_id/", "params": [ { "name": "comment_id", "value": "", "type": "path", "description": "The Comment ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a comment in a [conversation](https://dev.frontapp.com/reference/conversations).\n\nRequired scope: `comments:write`" }, { "info": { "name": "List comment mentions", "type": "http" }, "http": { "method": "GET", "url": "https://api2.frontapp.com/comments/:comment_id/mentions", "params": [ { "name": "comment_id", "value": "", "type": "path", "description": "The Comment ID" } ] }, "docs": "List the teammates mentioned in a comment.\n\nRequired scope: `teammates:read`" }, { "info": { "name": "Add comment reply", "type": "http" }, "http": { "method": "POST", "url": "https://api2.frontapp.com/comments/:comment_id/replies", "params": [ { "name": "comment_id", "value": "", "type": "path", "description": "The comment ID to reply to" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a reply to a comment on a [conversation](https://dev.frontapp.com/reference/conversations). Comment replies visually indicate which comment is being responded to, helping users follow the conversation.\n\nRequired scope: `comments:write`" }, { "info": { "name": "List conversation comments", "type": "http" }, "http": { "method": "GET", "url": "https://api2.frontapp.com/conversations/:conversation_id/comments", "params": [ { "name": "conversation_id", "value": "", "type": "path", "description": "The conversation ID" } ] }, "docs": "List the comments in a conversation in reverse chronological order (newest first).\n\nRequired scope: `comments:read`" }, { "info": { "name": "Add comment", "type": "http" }, "http": { "method": "POST", "url": "https://api2.frontapp.com/conversations/:conversation_id/comments", "params": [ { "name": "conversation_id", "value": "", "type": "path", "description": "The conversation ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Add a comment to a [conversation](https://dev.frontapp.com/reference/conversations). If you want to create a new comment-only conversation, use the [Create discussion conversation](https://dev.frontapp.com/reference/create-conversation) endpoint.\n\nRequired scope: `comments:write`" } ] } ], "bundled": true }