Skip to main content
PUT
/
api
/
conversation
/
{id}
Update conversation
curl --request PUT \
  --url https://your-instance.example.com/api/conversation/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isAutopilot": true,
  "process": "<string>",
  "assignees": [
    "<string>"
  ],
  "fromHistoryModal": true
}
'
{
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
isAutopilot
boolean
process
string
assignees
string[]
fromHistoryModal
boolean

Response

Conversation updated

message
string
data
object