provider Comments POST /comments/{comment_id}/replies
@utdk/front /comments/{comment_id}/replies
Add comment reply
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. Required scope: `comments:write`
comment_id path required
The comment ID to reply to
string

Try it

Authentication
Configure credentials for Core API
addCommentReply
POST/comments/{comment_id}/replies
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. Required scope: `comments:write`

Parameters

required

The comment ID to reply to

Input

ID of the teammate creating the comment. Alternatively, you can supply the author as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1). If omitted, will post as the API Token or OAuth client of the requester.

required

Content of the comment. Can include markdown formatting.

Whether or not the comment is pinned in its conversation.

Binary data of attached files. Must use `Content-Type: multipart/form-data` if specified. See [example](https://gist.github.com/hdornier/e04d04921032e98271f46ff8a539a4cb) or read more about [Attachments](https://dev.frontapp.com/docs/attachments-1). Max 25 MB.

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import front from '@utdk/front';

await front.addCommentReply({
  "comment_id": "com_123"
})