provider Conversations PATCH /conversations/{conversation_id}
@utdk/front /conversations/{conversation_id}
Update conversation
Update a conversation. Required scope: `conversations: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.

updateConversation
PATCH/conversations/{conversation_id}
Update a conversation. Required scope: `conversations:write`

Parameters

required

The conversation ID

Input

ID of the teammate to assign the conversation to. Set it to null to unassign.

ID of the inbox to move the conversation to.

New status of the conversation

Unique identifier of the status to set the conversation to. Only one of status and status_id should be provided. Ticketing must be enabled for the company to use this field.

List of all the tag IDs replacing the old conversation tags

An object whose key is the `name` property defined for the custom field in the Front UI. The value of the key must use the same `type` specified for the custom field, as described in https://dev.frontapp.com/reference/custom-fields

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.updateConversation({
  "conversation_id": "cnv_123"
})