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

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

const response = await client.managedAccounts.getAllocatableGlobalOutboundChannels();

console.log(response.data);
{
  "data": {
    "allocatable_global_outbound_channels": 500,
    "record_type": "allocatable_global_outbound_channels",
    "total_global_channels_allocated": 135
  }
}

Authorizations

Authorization
string
header
required

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

Response

Successful response with information about allocatable global outbound channels.

data
Managed Accounts Global Outbound Channels · object
Example:
{
"allocatable_global_outbound_channels": 500,
"record_type": "allocatable_global_outbound_channels",
"total_global_channels_allocated": 135
}