Update Deployment
Update a deployment’s configuration. You can update the name, description, agent version, connection config, and inbound schedule. Only include fields you want to change.
Overview
Update a deployment’s configuration. Common use cases:- Roll out a new agent version — set
app_versionto the latest committed version - Change the schedule — update
inbound_configto expand or restrict calling hours - Update phone numbers — change
connection_configsto add or remove lines
null or omitted are left unchanged.
Authorizations
Body
Request body for updating a deployment's configuration.
Updated deployment name
50^[\w\- ]{1,50}$Updated deployment description
150Updated agent version
Updated telephony connections
Updated inbound call schedule
{
"start_time": "09:00",
"end_time": "18:00",
"allowed_days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"timezone": "Asia/Kolkata"
}Response
Successful Response
Full deployment details including agent configuration, inbound settings, and status.
Unique identifier for the deployment
"dep-a1b2c3d4"
ID of the agent
"my-support-agent"
Version of the agent
3
Telephony connection configurations
Direction of calls (inbound, outbound, or both)
inbound, outbound, inbound_outbound User who created this deployment
"user@company.com"
Timestamp when created (ISO 8601)
"2026-03-01T10:00:00Z"
Timestamp when last updated (ISO 8601)
"2026-03-15T14:30:00Z"
Name of the deployment
Current status of the deployment
active, paused Optional description
Inbound call schedule configuration
{
"start_time": "09:00",
"end_time": "18:00",
"allowed_days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"timezone": "Asia/Kolkata"
}User who last updated this deployment