Skip to main content
GET
/
inbound_channels
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const inboundChannels = await client.inboundChannels.list();

console.log(inboundChannels.data);
{
  "data": {
    "channels": 7,
    "record_type": "inbound_channels"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

voice channels Response

data
object