***

title: removeParticipant
slug: /reference/typescript/rest/compat/conferences/remove-participant
description: Remove a participant from a conference.
max-toc-depth: 3
---------------------

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

Remove a participant from a conference, ending their call leg.

<EndpointSchemaSnippet endpoint="DELETE /Accounts/{AccountSid}/Conferences/{ConferenceSid}/Participants/{CallSid}" />

## **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.compat.conferences.removeParticipant("CF...", "CA...");
```