List All Queue Members
Returns the callers currently waiting in one queue, ordered by enqueue time. Use it to inspect position and wait duration or locate a Call SID to dequeue. The SignalWire REST Queue Members API reads the same waiting calls, identifying each by a member ID rather than a Call SID.
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice.
Learn more about API scopes.
Path parameters
Universal Unique Identifier.
The unique identifier for the account this Queue is associated with.
Universal Unique Identifier.
The unique identifier for the queue.
Query parameters
The page number to retrieve (zero-indexed).
The number of results per page. Default is 50, maximum is 1000.
Token for cursor-based pagination. Required when navigating to pages beyond the first.
Response
The request has succeeded.
Example response
{
"uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Queues/b3877c40-da60-4998-90ad-b792e98472qu/Members?Page=0&PageSize=50",
"first_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Queues/b3877c40-da60-4998-90ad-b792e98472qu/Members",
"next_page_uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472af/Queues/b3877c40-da60-4998-90ad-b792e98472qu/Members?Page=1&PageSize=50&PageToken=PAb3877c40-da60-4998-90ad-b792e98472me",
"page_size": 50,
"queue_members": [
{
"date_enqueued": "Wed, 26 Sep 2018 18:00:00 +0000",
"position": 1,
"wait_time": 30,
"member_type": "laml_call",
"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"
}
]
}