Fetch a specific member from the queue

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

Calls in a call queue

Fetch a specific member from the queue

Path parameters

  • AccountSid string Required

    The SID of the Account that created the Member resource(s) to fetch.

  • QueueSid string Required

    The SID of the Queue in which to find the members to fetch.

  • CallSid string Required

    The Call SID of the resource(s) to fetch.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • call_sid string | null

      The SID of the Call the resource is associated with

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^CA[0-9a-fA-F]{32}$.

    • date_enqueued string(date-time-rfc-2822) | null

      The date the member was enqueued

    • position integer | null

      This member's current position in the queue.

    • queue_sid string | null

      The SID of the Queue the member is in

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^QU[0-9a-fA-F]{32}$.

    • uri string(uri) | null

      The URI of the resource, relative to https://api.twilio.com

    • wait_time integer | null

      The number of seconds the member has been in the queue.

GET /2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members/{CallSid}.json
curl \
 -X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Queues/{QueueSid}/Members/{CallSid}.json \
 --user "username:password"
Response examples (200)
{
  "call_sid": "string",
  "date_enqueued": "string",
  "position": 42,
  "queue_sid": "string",
  "uri": "https://example.com",
  "wait_time": 42
}