import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.externalConnections.uploads.pendingCount('id');
console.log(response.data);{
"data": {
"pending_numbers_count": 123,
"pending_orders_count": 123
}
}Returns the count of all pending upload requests for the given external connection.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.externalConnections.uploads.pendingCount('id');
console.log(response.data);{
"data": {
"pending_numbers_count": 123,
"pending_orders_count": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Identifies the resource.
"1293384261075731499"
Was this page helpful?