---
title: "Get queue member"
method: GET
path: "/api/relay/rest/queues/{queue_id}/members/{id}"
tags: ["Queue Members"]
---

# Get queue member

`GET /api/relay/rest/queues/{queue_id}/members/{id}`

Retrieves one call that is waiting in a voice queue. Use [List queue members](/docs/apis/rest/queue-members/list-queue-members) to find waiting calls or [Get next queue member](/docs/apis/rest/queue-members/retrieve-next-queue-member) to inspect the caller 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).

## Path parameters

- `queue_id` string, uuid, required — Universal Unique Identifier.
- `id` string, uuid, required — Universal Unique Identifier.

## Response `200`

The request has succeeded.

- QueueMemberResponse — Response containing a single queue member.
  - `call_id` string, uuid, required — Universal Unique Identifier.
  - `project_id` string, required — The ID of the project associated with this queue member.
  - `queue_id` string, required — The ID of the queue associated with this queue member.
  - `position` integer, required — Queue member position in the queue.
  - `uri` string, required — The URL of this queue member.
  - `wait_time` integer — Wait time in seconds since the member was enqueued. If not yet enqueued, it will be null.
  - `date_enqueued` string, date-time — When the queue member was last enqueued.

## Other responses

- `401` — Access is unauthorized.
- `404` — The server cannot find the requested resource.
- `500` — An internal server error occurred.

---

[API](https://skmtc.dev/signalwire/apis/signalwire-rest-api.md) · [All operations](https://skmtc.dev/signalwire/apis/signalwire-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/signalwire/signalwire-rest-api/revisions/792d5b8e2970/schema)
