***

title: disconnect
slug: /reference/python/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**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

client.calling.disconnect(call_id="call-id-xxx")
```