provider Comments POST
/conversations/{conversation_id}/comments @utdk/front
/conversations/{conversation_id}/comments Add comment
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.
Required scope: `comments:write`
- conversation_id path required
- The conversation ID
- string
Try it
Authentication
Configure credentials for Core API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import front from '@utdk/front';
await front.addComment({
"conversation_id": "cnv_123"
})