---
title: "List queue calls"
method: GET
path: "/queuecalls"
tags: ["Queue"]
---

# List queue calls

`GET /queuecalls`

Returns a list of queue calls for the given customer.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of queue calls.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` QueueManagerQueuecall[]
    - `id` string, uuid — The unique identifier of the queuecall. Returned from the `GET /queuecalls` response.
    - `customer_id` string, uuid — The unique identifier of the customer who owns this queuecall. Returned from the `GET /customers` response.
    - `reference_type` 'call'
    - `reference_id` string, uuid — The unique identifier of the referenced resource (e.g., a call). Returned from the corresponding resource endpoint.
    - `status` 'initiating' | 'waiting' | 'connecting' | 'kicking' | 'service' | 'done' | 'abandoned'
    - `service_agent_id` string, uuid — The unique identifier of the agent handling this queuecall. Returned from the `GET /agents` response.
    - `duration_waiting` integer — Duration for waiting in milliseconds
    - `duration_service` integer — Duration for service in milliseconds
    - `tm_create` string, date-time — The creation timestamp.
    - `tm_service` string, date-time — Timestamp when the queue call started service.
    - `tm_update` string, date-time — The last update timestamp.
    - `tm_delete` string, date-time — The deletion timestamp.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/revisions/79e779080bcc/schema)
