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

OK

uristring
first_page_uristring
next_page_uristring
previous_page_uristring
pageinteger
page_sizeinteger
endstring

The name of object.

last_page_uristring

The URI for the last page.

num_pagesstring

The name of object.

startstring

The name of object.

totalstring

The name of object.

account_sidstring

The unique identofier for account.

queue_sidstring

The unique identifier for queue.

Example response

{
  "end": "0",
  "last_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Queues/b3877c40-da60-4998-90ad-b792e98472qu/Members.json?Page=0&PageSize=50",
  "num_pages": "1",
  "queue_members": [
    {
      "call_sid": "b3877c40-da60-4998-90ad-b792e98472af",
      "date_enqueued": "Wed, 26 Sept 2018 22:00:00 +0000",
      "position": "1",
      "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/LamlBins/5184b831-184f-4209-872d-ccdccc80f2f1",
      "wait_time": "300"
    }
  ],
  "start": "0",
  "total": "1",
  "account_sid": "b3877c40-da60-4998-90ad-b792e98472ac",
  "queue_sid": "b3877c40-da60-4998-90ad-b792e98472qu"
}

Changes