import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.queues.calls.update('call_control_id', { queue_name: 'queue_name' });Update queued call’s keep_after_hangup flag
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
await client.queues.calls.update('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
Update queued call request.
Whether the call should remain in queue after hangup.
true
Call has been successfully updated.
Was this page helpful?