import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.queues.calls.remove('call_control_id', { queue_name: 'queue_name' });Removes an inactive call from a queue. If the call is no longer active, use this command to remove it from the queue.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.queues.calls.remove('call_control_id', { queue_name: 'queue_name' });Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Uniquely identifies the queue by name
Unique identifier and token for controlling the call
Call successfully removed from the queue
Was this page helpful?