Check out our upcoming events and meetups! View events →
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.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const inboundChannel = await client.inboundChannels.update({ channels: 7 });
console.log(inboundChannel.data);{
"data": {
"channels": 7,
"record_type": "inbound_channels"
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Voice channels update
The new number of concurrent channels for the account
7
Expected Update response
Show child attributes
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const inboundChannel = await client.inboundChannels.update({ channels: 7 });
console.log(inboundChannel.data);{
"data": {
"channels": 7,
"record_type": "inbound_channels"
}
}