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.
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"
}
]
}