> For clean Markdown of any page, append `.md` to the page URL.
> For a complete documentation index, see https://docs.sarvam.ai/llms.txt.
> For full documentation content in one file, see https://docs.sarvam.ai/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.sarvam.ai/_mcp/server.

# List deployments

GET https://apps.sarvam.ai/api/app-authoring/v1/orgs/{org_id}/workspaces/{workspace_id}/deployments

List all deployments in the workspace with optional filtering, sorting, and pagination.

Reference: https://docs.sarvam.ai/api-reference/deployments/list

## Request

### Path parameters

- `org_id` (string, required)
- `workspace_id` (string, required)

### Query parameters

- `offset` (integer, optional, default: 0) — Number of records to skip
- `limit` (integer, optional, default: 10) — Number of records to return (max 100)
- `sort_by` (string, optional, nullable) — Field to sort by
- `sort_order` (string, optional, nullable) — Sort order (asc or desc)
- `search` (string, optional, nullable) — Search query string

## Response

### 200

Successful Response

- `items` (list of object, required) — List of deployments on this page
  - `deployment_id` (string, required) — Unique identifier for the deployment
  - `app_id` (string, required) — ID of the agent
  - `app_version` (integer, required) — Version of the agent
  - `phone_numbers` (list of string, required) — Phone numbers assigned to this deployment
  - `channel_direction` (enum, required) — Direction of calls
    - Allowed values: `inbound`, `outbound`, `inbound_outbound`
  - `created_by` (string, required) — User who created this deployment
  - `created_at` (datetime, required) — Timestamp when created (ISO 8601)
  - `updated_at` (datetime, required) — Timestamp when last updated (ISO 8601)
  - `name` (string, optional, nullable) — Name of the deployment
  - `status` (enum, optional, nullable) — Current status of the deployment
    - Allowed values: `active`, `paused`
  - `description` (string, optional, nullable) — Optional description
  - `inbound_config` (object, optional, nullable) — Inbound call schedule configuration
    - `start_time` (string, required) — Start time in HH:MM 24-hour format
    - `end_time` (string, required) — End time in HH:MM 24-hour format
    - `allowed_days` (list of enum, required) — Days of the week when inbound calls are accepted
      - Allowed values: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday`, `Sunday`
    - `timezone` (string, optional, default: Asia/Kolkata) — IANA timezone, e.g. 'Asia/Kolkata', 'UTC', 'America/New_York'
  - `updated_by` (string, optional, nullable) — User who last updated this deployment
  - `webhook_config` (object, optional, nullable) — Webhook configuration for call completion events
    - `url` (string, required)
    - `metadata` (map from string to any, optional, nullable)
- `total` (integer, required) — Total number of deployments matching the query
- `limit` (integer, required) — Maximum number of items per page
- `offset` (integer, required) — Number of items skipped
- `next_page_uri` (string, optional, nullable) — URI to fetch the next page, or null if this is the last page
- `prev_page_uri` (string, optional, nullable) — URI to fetch the previous page, or null if this is the first page

## Examples

**Response**

```json
{
  "items": [
    {
      "deployment_id": "dep-a1b2c3d4",
      "app_id": "my-support-agent",
      "app_version": 3,
      "phone_numbers": [
        "+918047168000"
      ],
      "channel_direction": "inbound",
      "created_by": "user@company.com",
      "created_at": "2026-03-01T10:00:00Z",
      "updated_at": "2026-03-15T14:30:00Z",
      "name": "Customer Support Line",
      "status": "active",
      "description": "Main support deployment for EN and HI",
      "inbound_config": {
        "start_time": "09:00",
        "end_time": "18:00",
        "allowed_days": [
          "Monday",
          "Tuesday",
          "Wednesday",
          "Thursday",
          "Friday"
        ],
        "timezone": "Asia/Kolkata"
      },
      "updated_by": "user@company.com"
    }
  ],
  "total": 1,
  "limit": 10,
  "offset": 0,
  "next_page_uri": null,
  "prev_page_uri": null
}
```

**SDK Code**

```python
import requests

url = "https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments"

response = requests.get(url)

print(response.json())
```

```javascript
const url = 'https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments');

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://apps.sarvam.ai/api/app-authoring/v1/orgs/org_id/workspaces/workspace_id/deployments")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```