Dequeue a member from a queue and have the member's call begin executing the TwiML document at that URL
Calls in a call queue
Dequeue a member from a queue and have the member's call begin executing the TwiML document at that URL
POST /2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members/{CallSid}.json
curl \
-X POST https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members/{CallSid}.json \
--user "username:password" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d 'Method=HEAD&Url=https%3A%2F%2Fexample.com'
Request example
{
"Method": "HEAD",
"Url": "https://example.com"
}
Request examples
{
"Method": "HEAD",
"Url": "https://example.com"
}
Response examples (200)
{
"call_sid": "string",
"date_enqueued": "string",
"position": 42,
"queue_sid": "string",
"uri": "https://example.com",
"wait_time": 42
}
Response examples (200)
{
"call_sid": "string",
"date_enqueued": "string",
"position": 42,
"queue_sid": "string",
"uri": "https://example.com",
"wait_time": 42
}