VoxLink.ai

Conversations & Call Records

Enable AI

Re-enable AI replies for a conversation after a human takeover

Updated 27 July 2026

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 API key as a Bearer token.

Path Parameters

uuidstringrequired

The unique UUID identifier of the conversation

Response Fields

statusboolean

true when the operation was successful

ai_enabledboolean

Will always be true on success

Error Responses

statusboolean

false when an error occurs

errorstring

Error message. Possible values:

  • Conversation not found — the UUID does not exist or belongs to a different account
curl -X POST "https://app.voxlink.ai/api/user/conversations/7c9e6679-7425-40de-944b-e07fc1f90ae7/enable-ai" \
  -H "Authorization: Bearer YOUR_API_KEY"
const conversationId = '7c9e6679-7425-40de-944b-e07fc1f90ae7';

const response = await fetch(
  `https://app.voxlink.ai/api/user/conversations/${conversationId}/enable-ai`,
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
    },
  }
);

const data = await response.json();
console.log(data.ai_enabled); // true
import requests

conversation_id = '7c9e6679-7425-40de-944b-e07fc1f90ae7'

response = requests.post(
    f'https://app.voxlink.ai/api/user/conversations/{conversation_id}/enable-ai',
    headers={'Authorization': 'Bearer YOUR_API_KEY'}
)

data = response.json()
print(data['ai_enabled'])  # True
{
  "status": true,
  "ai_enabled": true
}
{
  "status": false,
  "error": "Conversation not found"
}
{
  "error": "Unauthorized"
}

Related guides