---
title: "List recordings"
method: GET
path: "/recordings"
tags: ["Recording"]
---

# List recordings

`GET /recordings`

Retrieves a list of recordings for the given customer.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of recordings.

- 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` CallManagerRecording[]
    - `id` string, uuid — The unique identifier of the recording.
    - `customer_id` string, uuid — The customer ID that owns this recording. Returned from the `GET /customers` response.
    - `owner_type` string — Type of the resource owner (e.g., call, confbridge).
    - `owner_id` string, uuid — The unique identifier of the resource owner. Returned from the corresponding owner resource endpoint (e.g., `GET /calls`, `GET /conferences`).
    - `reference_type` 'call' | 'confbridge' — Type of reference for the recording.
    - `reference_id` string, uuid — The unique identifier of the referenced resource. The actual resource type is determined by reference_type. Returned from the corresponding resource endpoint.
    - `status` 'initiating' | 'recording' | 'stopping' | 'ended' — The status of the recording.
    - `format` 'wav' — The format of the recording.
    - `activeflow_id` string, uuid — The activeflow ID associated with this recording. Returned from the `POST /activeflows` or `GET /activeflows` response.
    - `on_end_flow_id` string, uuid — Flow ID to execute when recording ends. Returned from the `POST /flows` or `GET /flows` response.
    - `tm_start` string, date-time — The start timestamp of the recording.
    - `tm_end` string, date-time — The end timestamp of the recording.
    - `tm_create` string, date-time — The creation timestamp.
    - `tm_update` string, date-time — The last update timestamp.
    - `tm_delete` string, date-time — The deletion timestamp, if applicable.

## 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/versions/79e779080bcc/schema)
