Skip to main content
POST
/
api
/
v1
/
agent
/
{agent_id}
/
deploy
Deploy Agent
curl --request POST \
  --url https://dev.voice.ai/api/v1/agent/{agent_id}/deploy \
  --header 'Authorization: Bearer <token>'
{
  "agent": {
    "agent_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "name": "Customer Support Agent",
    "config": {
      "prompt": "You are a helpful customer support agent.",
      "greeting": "Hello! How can I help you today?"
    },
    "status": "deployed",
    "status_code": 10,
    "kb_id": 42,
    "created_at": "2026-03-06T18:00:00Z",
    "updated_at": "2026-03-06T18:12:00Z"
  },
  "message": "Agent deployed successfully"
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use your API key as the bearer token. Format: Authorization: Bearer

Path Parameters

agent_id
string
required

Response

Returns { agent, message }, with optional sip_status and sip_details when deploy triggers telephony setup.

agent
Agent · object
required
message
string
required
sip_status
string | null
sip_details
Sip Details · object