v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-014102371.0 MB
Call

Get list of outbound configs

Returns a list of outbound configs for the given customer.

get/outbound_configs

Query parameters

customer_idstring uuid

Filter by customer ID.

page_sizeinteger
Example:25

Number of results to return per page.

page_tokenstring

Cursor token for pagination. Use the next_page_token value from the previous response.

Response

A list of outbound configs.

next_page_tokenstring

Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.

Example response

{
  "result": [
    {
      "id": "00000000-0000-0000-0000-000000000001",
      "customer_id": "00000000-0000-0000-0000-000000000001",
      "name": "production outbound config",
      "detail": "allows US and UK PSTN calls",
      "destination_whitelist": [
        "us",
        "gb",
        "kr"
      ],
      "codecs": "PCMU,PCMA",
      "default_outgoing_source_number_id": "00000000-0000-0000-0000-000000000001"
    }
  ]
}