Skip to main content
POST
/
automate
/
conversations
/
{uuid}
/
enable-ai
curl -X POST "https://app.autocalls.ai/api/automate/conversations/7c9e6679-7425-40de-944b-e07fc1f90ae7/enable-ai" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "status": true,
  "ai_enabled": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.autocalls.ai/llms.txt

Use this file to discover all available pages before exploring further.

Re-enables AI responses for a conversation that was previously disabled via the Disable AI endpoint. The assistant will resume responding to new messages from this point forward.

Authentication

This endpoint requires your Automate API key as a Bearer token.

Path Parameters

uuid
string
required
The unique UUID identifier of the conversation

Response Fields

status
boolean
true when the operation was successful
ai_enabled
boolean
Will always be true on success

Error Responses

status
boolean
false when an error occurs
error
string
Error message. Possible values:
  • Conversation not found — the UUID does not exist or belongs to a different account
curl -X POST "https://app.autocalls.ai/api/automate/conversations/7c9e6679-7425-40de-944b-e07fc1f90ae7/enable-ai" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "status": true,
  "ai_enabled": true
}