---
title: "Delete a speaking session"
method: DELETE
path: "/speakings/{id}"
tags: ["Speaking"]
---

# Delete a speaking session

`DELETE /speakings/{id}`

Soft-deletes a speaking session. Stops the session if still active.

## Path parameters

- `id` string, required

## Response `200`

The deleted speaking session.

- TtsManagerSpeaking
  - `id` string, uuid — The unique identifier of the speaking session. Returned from the `POST /speakings` or `GET /speakings` response.
  - `customer_id` string, uuid — The unique identifier of the customer who owns this speaking session. Returned from the `GET /customers` response.
  - `reference_type` '' | 'call' | 'confbridge' — Type of the referenced entity for the speaking session.
  - `reference_id` string, uuid — The unique identifier of the referenced resource (call or confbridge). Returned from the corresponding resource endpoint.
  - `language` string — TTS language (e.g. en-US)
  - `provider` string — TTS provider (elevenlabs)
  - `voice_id` string — Provider-specific voice ID
  - `direction` '' | 'in' | 'out' | 'both' — Audio injection direction for the speaking session.
  - `status` 'initiating' | 'active' | 'stopped' — Status of the speaking session.
  - `tm_create` string, date-time — Creation timestamp
  - `tm_update` string, date-time — Last update timestamp
  - `tm_delete` string, date-time — Soft-delete timestamp

## 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).

---

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