Skip to main content

Update voice channels for US Zone

PATCH 
/inbound_channels

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

Request

Body

required

Voice channels update

    channels integerrequired

    The new number of concurrent channels for the account

Responses

200: Expected Update response

default: Unexpected error

Request samples


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

Response samples


{
"data": {
"channels": 7,
"record_type": "inbound_channels"
}
}