Queue Members

List All Queue Members

The ability to read all of the queue members that are waiting in a particular queue. This will be returned as a list of members.

Permissions

The API token must include the following scopes: Voice.

get/Accounts/{AccountSid}/Queues/{QueueSid}/Members

Path parameters

AccountSidstring uuid required

The unique identifier for the account this Queue is associated with.

QueueSidstring uuid required

The unique identifier for the queue.

Response

The request has succeeded.

uristring

The URI of the current page.

first_page_uristring

The URI of the first page.

next_page_uristring

The URI of the next page.

previous_page_uristring

The URI of the previous page.

pageinteger

The current page number.

page_sizeinteger

The number of items per page.

Example response

{
  "uri": "/api/laml/2010-04-01/Accounts?Page=0&PageSize=50",
  "first_page_uri": "/api/laml/2010-04-01/Accounts?Page=0&PageSize=50",
  "next_page_uri": "/api/laml/2010-04-01/Accounts?Page=1&PageSize=50",
  "page_size": 50,
  "queue_members": [
    {
      "call_sid": "b3877c40-da60-4998-90ad-b792e98472ca",
      "date_enqueued": "Wed, 26 Sept 2018 18:00:00 +0000",
      "position": 1,
      "wait_time": "0",
      "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Queues/b3877c40-da60-4998-90ad-b792e98472qu/Members/b3877c40-da60-4998-90ad-b792e98472ca.json"
    }
  ]
}

Changes