For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
cXMLREST API
cXMLREST API
  • Core
    • Overview
    • Authorization
    • Error codes
    • Paging
    • REST client SDKs
  • Compatibility REST API
      • GETList All Queue Members
      • GETRetrieve a Queue Member
      • POSTUpdate a Queue Member
LogoLogoSignalWire Docs
Log inSign up
Support
Compatibility REST APIQueue Members

Retrieve a Queue Member

|View as Markdown|Open in Claude|
GET
https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Queues/:QueueSid/Members/:CallSid
GET
/api/laml/2010-04-01/Accounts/:AccountSid/Queues/:QueueSid/Members/:CallSid
$curl https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Queues/QueueSid/Members/CallSid \
> -u "<project_id>:<api_token>"
1{
2 "call_sid": "b3877c40-da60-4998-90ad-b792e98472ca",
3 "account_sid": "b3877c40-da60-4998-90ad-b792e98472af",
4 "queue_sid": "b3877c40-da60-4998-90ad-b792e98472qu",
5 "date_enqueued": "Wed, 26 Sep 2018 18:00:00 +0000",
6 "position": 1,
7 "wait_time": 30,
8 "member_type": "laml_call",
9 "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"
10}
Retrieve a single queue member by call SID. Use the special value `Front` to retrieve the member at the front of the queue. #### 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](/docs/platform/your-signalwire-api-space).
Was this page helpful?
Previous

Update a Queue Member

Next
Built with

Retrieve a single queue member by call SID. Use the special value Front to retrieve the member at the front of the queue.

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.

Authentication

AuthorizationBasic
SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ```

Path parameters

AccountSidstringRequiredformat: "uuid"
The unique identifier for the account this Queue is associated with.
QueueSidstringRequiredformat: "uuid"
The unique identifier for the queue.
CallSidstringRequired
The unique identifier for the call, or the special value 'Front' to reference the member at the front of the queue.

Response

The request has succeeded.
call_sidstringformat: "uuid"
The unique identifier for the call.
account_sidstringformat: "uuid"
The unique identifier for the account.
queue_sidstringformat: "uuid"
The unique identifier for the queue.
date_enqueuedstring
The date and time, in RFC 2822 format, when the member was enqueued.
positioninteger>=1

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

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

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error

SignalWire Basic Authentication using Project ID and API Token.

The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password.

Example:

Authorization: Basic base64(project_id:token)