GET
/
v1
/
orgs
/
{org_id}
/
workspaces
/
{workspace_id}
/
deployments
/
{deployment_id}
Get Deployment
curl --request GET \
  --url https://apps.sarvam.ai/api/app-authoring/v1/orgs/{org_id}/workspaces/{workspace_id}/deployments/{deployment_id} \
  --header 'X-API-Key: <api-key>'
{
  "name": "Customer Support Line",
  "deployment_id": "dep-a1b2c3d4",
  "status": "active",
  "description": "Main support deployment for EN and HI",
  "app_id": "my-support-agent",
  "app_version": 3,
  "connection_configs": [
    {
      "connection_id": "conn-exotel-001",
      "phone_numbers": [
        "+918047168000"
      ]
    }
  ],
  "channel_direction": "inbound",
  "inbound_config": {
    "start_time": "09:00",
    "end_time": "18:00",
    "allowed_days": [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday"
    ],
    "timezone": "Asia/Kolkata"
  },
  "created_by": "user@company.com",
  "created_at": "2026-03-01T10:00:00Z",
  "updated_by": "user@company.com",
  "updated_at": "2026-03-15T14:30:00Z"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

org_id
string
required
workspace_id
string
required
deployment_id
string
required

Response

Successful Response

Full deployment details including agent configuration, inbound settings, and status.

deployment_id
string
required

Unique identifier for the deployment

Example:

"dep-a1b2c3d4"

app_id
string
required

ID of the agent

Example:

"my-support-agent"

app_version
integer
required

Version of the agent

Example:

3

connection_configs
ConnectionConfig · object[]
required

Telephony connection configurations

channel_direction
enum<string>
required

Direction of calls (inbound, outbound, or both)

Available options:
inbound,
outbound,
inbound_outbound
created_by
string
required

User who created this deployment

Example:

"user@company.com"

created_at
string<date-time>
required

Timestamp when created (ISO 8601)

Example:

"2026-03-01T10:00:00Z"

updated_at
string<date-time>
required

Timestamp when last updated (ISO 8601)

Example:

"2026-03-15T14:30:00Z"

name
string | null

Name of the deployment

status
enum<string> | null

Current status of the deployment

Available options:
active,
paused
description
string | null

Optional description

inbound_config
InboundConfig · object

Inbound call schedule configuration

Example:
{
"start_time": "09:00",
"end_time": "18:00",
"allowed_days": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"timezone": "Asia/Kolkata"
}
updated_by
string | null

User who last updated this deployment