Update concurrent channel settings
PUT/origination/channel_settings
Updates the concurrent channel settings with the values of the parameters passed. Any parameters not included in the request will be left unchanged.
Request
- application/json
Body
required
Updated concurrent channel settings object
channels integerrequired
The new number of concurrent channels you want. You may check the cost per channel on the pricing page. Please note you may not set your channel count to 0 if you have any numbers using channel billing.
Responses
200: Channel settings update response
- application/json
400: Bad request
401: Unauthorized
404: Record not found
422: Unprocessable request
Request samples
curl -L -X PUT 'https://api.telnyx.com/origination/channel_settings' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"channels": 0
}'
Response samples
{
"channels": 0
}