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": false,
  "assignees": [
    "65b1f0a2c3d4e5f6a7b8c9d0"
  ]
}
'
{
  "message": "Conversation updated",
  "data": {
    "_id": "65d3e0f0a0b0c0d0e0f0a0b0",
    "isAutopilot": false
  }
}

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

When true, lets the configured AI agent respond automatically.

process
string

Prompt _id driving the AI for this conversation.

assignees
string[]

User _ids assigned to this conversation; receives socket events and pings.

fromHistoryModal
boolean

Suppresses side-effects (audit log, socket emit) when the update originates from the history viewer.

Response

Conversation updated

message
string
data
object