***

title: delete
slug: /reference/typescript/rest/video/conferences/delete
description: Delete a video conference.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Delete a video conference.

<EndpointSchemaSnippet endpoint="DELETE /api/video/conferences/{id}" />

## **Example**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

await client.video.conferences.delete("conference-id");
```