curl --request PUT \
--url https://api.open.cx/autopilot \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"channel": "web",
"autopilot_enabled": true,
"ai_agent_version": "v1"
}
'{
"channels": [
{
"channel": "<string>",
"autopilot_enabled": true,
"ai_agent_version": "v1"
}
]
}Turn autopilot on or off for a specific channel. When disabled, the AI will not automatically respond on that channel — conversations go directly to human agents.
curl --request PUT \
--url https://api.open.cx/autopilot \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"channel": "web",
"autopilot_enabled": true,
"ai_agent_version": "v1"
}
'{
"channels": [
{
"channel": "<string>",
"autopilot_enabled": true,
"ai_agent_version": "v1"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Channel to update: web, email, phone, whatsapp, slack, sms, instagram, messenger, api, web_voice
web, email, phone, whatsapp, slack, sms, instagram, messenger, api, web_voice Set true to enable autopilot, false to disable
AI agent version to use for this channel
v1, v2 Default Response
Show child attributes
Was this page helpful?