POST
/2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members/{CallSid}.jsonDequeue a queue member
Removes a call from a queue and starts executing the TwiML document at the supplied URL. Provide Url and optionally choose whether the update request data is sent with GET or POST through Method.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
AccountSidstringrequired
The account SID that created the queue member, matching the 34-character `AC` SID format.
QueueSidstringrequired
The queue SID containing the member, matching the 34-character `QU` SID format.
CallSidstringrequired
The call SID of the queue member to dequeue.
Form data controlling the URL and HTTP method used when dequeuing the call.
Urlstringrequired
The absolute URL of the Queue resource.
Methodstringoptional
How to pass the update request data. Can be `GET` or `POST` and the default is `POST`. `POST` sends the data as encoded form data and `GET` sends the data as query parameters.
200Returns the dequeued member with its call SID, queue SID, enqueue timestamp, current position, wait time, and resource URI.
call_sidstringoptional
The SID of the [Call](https://www.twilio.com/docs/voice/api/call-resource) the Member resource is associated with.
date_enqueuedstringoptional
The date that the member was enqueued, given in RFC 2822 format.
positionintegeroptional
This member's current position in the queue.
uristringoptional
The URI of the resource, relative to `https://api.twilio.com`.
wait_timeintegeroptional
The number of seconds the member has been in the queue.
queue_sidstringoptional
The SID of the Queue the member is in.
Error handling
Url is required and must be an absolute URI. Method must be GET or POST, and defaults to POST when omitted.