Call
Update own outbound config
Updates the outbound config for the authenticated customer. The config is automatically resolved from the authenticated user's customer record via JWT.
put/outbound_config
Request body
Example request
{
"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"
}Response
Successfully updated outbound config.
Example response
{
"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"
}