Queue Members

View as Markdown

Queue members are the callers who are currently waiting in a call queue.

Properties

call_sidstringRequiredformat: "uuid"
The unique identifier for the call.
account_sidstringRequiredformat: "uuid"
The unique identifier for the account.
queue_sidstringRequiredformat: "uuid"
The unique identifier for the queue.
date_enqueuedstringRequired
The date and time, in RFC 2822 format, when the member was enqueued.
positionintegerRequired>=1

The position of the member in the queue (1-indexed).

wait_timeintegerRequired>=0
The wait time, in seconds, since the member was enqueued.
member_typestringRequired
The type of the queue member.
uristringRequired
The URI of this resource, relative to the API base URL.

Example object

The Queue Member Object
1{
2 "call_sid": "string",
3 "account_sid": "string",
4 "queue_sid": "string",
5 "date_enqueued": "string",
6 "position": 0,
7 "wait_time": 0,
8 "member_type": "string",
9 "uri": "string"
10}