***

title: tapStop
slug: /reference/typescript/rest/calling/tap-stop
description: Stop an active audio tap on a call via REST.
max-toc-depth: 3
---------------------

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

[tap]: /docs/server-sdks/reference/typescript/rest/calling/tap

Stop an active audio tap.

<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.tapStop("call-id-xxx", { control_id: "ctrl-id" });
```