PATCH
/
ai-assistants
/
{assistant_id}
curl --request PATCH \
  --url https://api.puretalk.ai/api/ai-assistants/{assistant_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "who_speaks_first": "assistant",
  "name": "<string>",
  "voice": 123,
  "prompt": "<string>",
  "model": "puretalk-plg",
  "begin_message": "<string>",
  "call_recording_enabled": true,
  "assistant_type": "single_prompt",
  "avatar": "<string>",
  "custom_knowledge_base": "<string>",
  "timezone": "<string>",
  "reminder_message_frequency": 123,
  "max_reminder_messages": 123,
  "voice_stability": "<string>",
  "voice_clarity_similarity": "<string>",
  "voice_stream_latency_optimization": 123,
  "voice_boost": false,
  "chatbot_logo": "<string>",
  "chatbot_accent_color": "<string>",
  "chatbot_faq": "<string>"
}'
{
  "msg": "<string>",
  "err": true,
  "results": {
    "assistant_id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "My AI Assistant",
    "prompt": "Hello, how are you?",
    "model": "gpt-3.5-turbo",
    "who_speaks_first": "assistant",
    "begin_message": "Hello, how are you?",
    "assistant_type": "single_prompt",
    "avatar": "<string>",
    "custom_knowledge_base": "<string>",
    "timezone": "<string>",
    "voice_stability": 0.5,
    "voice_clarity_similarity": 0.5,
    "voice_stream_latency_optimization": 2,
    "voice_boost": false,
    "voice_speed": 0,
    "voice_emotion": [],
    "call_recording_enabled": true,
    "reminder_message_frequency": 1,
    "max_reminder_messages": 1,
    "post_analysis": "<string>",
    "chatbot_logo": "<string>",
    "chatbot_accent_color": "<string>",
    "chatbot_faq": "<string>",
    "chatbot_whitelisted_domains": [
      "<string>"
    ],
    "chatbot_begin_message": "<string>",
    "tools": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "behavior": 1,
    "user": {
      "name": "<string>",
      "dp": "<string>",
      "email": "[email protected]"
    },
    "voice": {
      "voice_id": "<string>",
      "name": "<string>",
      "avatar": "<string>",
      "gender": "<string>",
      "demo_audio_url": "<string>",
      "is_cloned": true,
      "language": "<string>",
      "description": "<string>"
    }
  }
}

Authorizations

X-API-KEY
string
header
required

Authorization header containing API key. You can find your API key in the dashboard under 'API Keys'.

Path Parameters

assistant_id
string
required

ID of AI Assistant to update

Body

application/json

Response

200
application/json

AI Assistant updated

The response is of type object.