***

title: disconnect
slug: /reference/typescript/rest/calling/disconnect
description: Disconnect (unbridge) a connected call without ending either leg via REST.
max-toc-depth: 3
---------------------

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

Disconnect (unbridge) a connected call. If two call legs are bridged together,
this separates them without ending either leg.

<EndpointSchemaSnippet endpoint="POST /api/calling/calls" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/calling/calls" />

## **Example**

```typescript {9-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.calling.disconnect("call-id-xxx");
```