Check out our upcoming events and meetups! View events →
Returns the US Zone voice channels for your account. voice channels allows you to use Channel Billing for calls to your Telnyx phone numbers. Please check the Telnyx Support Articles section for full information and examples of how to utilize Channel Billing.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const inboundChannels = await client.inboundChannels.list();
console.log(inboundChannels.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.
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 inboundChannels = await client.inboundChannels.list();
console.log(inboundChannels.data);{
"data": {
"channels": 7,
"record_type": "inbound_channels"
}
}