Sample - Twilio API
GET/2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members/{CallSid}.json

Get a queue member

Retrieves a specific member from a queue. Supply the account SID, queue SID, and call SID to identify the queued call.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

3 parameters
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 retrieve.

1 status code
200Returns the queue 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.
Default:0
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.
Default:0
queue_sidstringoptional
The SID of the Queue the member is in.

Error handling

AccountSid must be a 34-character account SID beginning with AC, and QueueSid must be a 34-character queue SID beginning with QU. CallSid must identify the call associated with the queue member.