provider Messages POST /conversations/{conversation_id}/messages
@utdk/front /conversations/{conversation_id}/messages
Create message reply
Reply to a conversation by sending a message and appending it to the conversation. Required scope: `messages:send`
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.

createMessageReply
POST/conversations/{conversation_id}/messages
Reply to a conversation by sending a message and appending it to the conversation. Required scope: `messages:send`

Parameters

required

The conversation ID

Input

List of the recipient handles who will receive this message

List of the recipient handles who will receive a copy of this message

List of the recipient handles who will receive a copy of this message

Name used for the sender info of the message

Subject of the message for email message

ID of the teammate on behalf of whom the answer is sent

Channel ID the message is sent from

required

Body of the message

Text version of the body for email messages

Body for the quote that the message is referencing. Only available on email channels.

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.

ID of the signature to attach to this draft. Only supported for email channels; using this on other channel types returns a 403 forbidden error. If null, no signature is attached.

Whether or not Front should try to resolve a signature for the message. Only applies to email channels and is ignored if signature_id is included or if author_id is omitted. Default false;

Enter a gateway URL above to enable sending.

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

TypeScript

import front from '@utdk/front';

await front.createMessageReply({
  "conversation_id": "cnv_123"
})