import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const inboundChannel = await client.inboundChannels.update({ channels: 7 });
console.log(inboundChannel.data);{
"data": {
"channels": 7,
"record_type": "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.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const inboundChannel = await client.inboundChannels.update({ channels: 7 });
console.log(inboundChannel.data);{
"data": {
"channels": 7,
"record_type": "inbound_channels"
}
}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
Was this page helpful?