---
title: "Delete recording"
method: DELETE
path: "/recordings/{id}"
tags: ["Recording"]
---

# Delete recording

`DELETE /recordings/{id}`

Deletes the specified recording and returns the deleted recording information.

## Path parameters

- `id` string, required

## Response `200`

The deleted recording details.

- 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

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).
- `503` — Upstream unavailable (UNAVAILABLE).

---

[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)
