Skip to main content

Update voice channels for non-US Zones

PUT 
/channel_zones/:channel_zone_id

Update the number of Voice Channels for the Non-US Zones. This allows your account to handle multiple simultaneous inbound calls to Non-US numbers. Use this endpoint to increase or decrease your capacity based on expected call volume.

Request

Path Parameters

    channel_zone_id stringrequired

    Channel zone identifier

Body

required

Quantity of reserved channels and organizational update option

    channels int64required

    The number of reserved channels

Responses

200: Successfuly patched channel zone

default: Unexpected error

Request samples


curl -L -X PUT 'https://api.telnyx.com/v2/phone_numbers/channel_zones/:channel_zone_id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"channels": 0
}'

Response samples


{
"record_type": "channel_zone",
"countries": [
"BE",
"EL",
"LT",
"PT",
"BG",
"ES",
"LU",
"RO",
"CZ",
"FR",
"HU",
"SI",
"DK",
"HR",
"MT",
"SK",
"DE",
"IT",
"NL",
"FI",
"EE",
"CY",
"AT",
"SE",
"IE",
"LV",
"PL"
],
"id": "1653e6a1-4bfd-4857-97c6-6a51e1c34477",
"name": "Euro channel zone",
"channels": 7,
"created_at": "2019-01-23T18:10:02.574Z",
"updated_at": "2019-01-23T18:10:02.574Z"
}