This endpoint allows you to update an existing AI assistant’s configuration. All fields are optional - only provide the fields you want to update.
Path Parameters
The unique identifier of the assistant to update
Request Body
Core Fields
The name of the assistant (max 255 characters)
The voice ID to use for the assistant (must exist in available voices)
The language name for the assistant (max 100 characters)
The LLM model name to use (max 100 characters)
The call direction type. Options: receive
, make
The engine type to use. Options: pipeline
, multimodal
The timezone for the assistant (e.g., “America/New_York”)
The initial message the assistant will speak when the call starts
The system prompt that defines the assistant’s behavior and personality
Optional Configuration
The ID of a phone number to assign to the assistant (set to null to unassign)
Voice activity detection type. Options: vad
, ai
Endpoint sensitivity level (0-5)
Interrupt sensitivity level (0-5)
Ambient sound volume level (0-1)
Whether to enable post-call evaluation
send_webhook_only_on_completed
Whether to send webhooks only on completed calls
include_recording_in_webhook
Whether to include recording URL in webhook payload
Webhook Configuration
Whether webhook notifications are enabled
The webhook URL for post-call notifications (can be set to null to remove)
Interruption Settings
Whether to use minimum interrupt words setting
Minimum number of words before interruption is allowed (0-10)
Variables and Schema
Key-value pairs of custom variables for the assistant
Schema definition for post-call data extractionShow post_call_schema properties
The name of the schema field (alphanumeric and underscores only)
The data type. Options: string
, number
, bool
post_call_schema[].description
Description of what this field represents
end_call_tool.description
Description for the end call tool functionality (max 500 characters)
Voice and Speech Settings
LLM temperature setting (0-1)
Voice stability setting (0-1)
Voice similarity setting (0-1)
Speech speed multiplier (0.7-1.2)
Call Behavior Settings
Whether to allow caller interruptions
Whether to use filler audio during processing
Re-engagement interval in seconds (7-600)
Maximum call duration in seconds (20-1200)
Maximum silence duration in seconds (1-120)
Whether to end call when voicemail is detected
Whether to enable noise cancellation
Whether to record the call
Who speaks first in the call. Options: AI assistant
, Customer
Response
Success message confirming assistant update
The unique identifier of the updated assistant
The name of the assistant
The current status of the assistant
The type of assistant (inbound
or outbound
)
The engine mode (pipeline
or multimodal
)
Error Responses
Error message when the assistant is not found or doesn’t belong to the authenticated user
Error message indicating validation failure
Detailed validation errors for each field
500 Internal Server Error
Error message indicating assistant update failure
{
"message": "Assistant updated successfully",
"data": {
"id": 789,
"name": "Updated Sales Assistant",
"status": "active",
"type": "outbound",
"mode": "pipeline"
}
}
Notes
- Only the fields you provide in the request body will be updated
- All validation rules apply the same as when creating an assistant
- To remove a phone number assignment, set
phone_number_id
to null
- To disable webhook, set
webhook_url
to null
or is_webhook_active
to false
- The assistant must belong to the authenticated user to be updated