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

# stop_tap

> Stop an active tap stream.

Stop an active tap stream.

An object that accepts the following properties.

## **Properties**

ID of the tap to stop

## **Variables**

Read by the method:

* **tap\_control\_id:** (in) Control ID of last tap stream started.

Set by the method:

* **stop\_tap\_result:** (out) Success or failed.

## **Examples**

### Stop the last call tap

```yaml
version: 1.0.0
sections:
  main:
    - stop_tap: {}
```

```json
{
  "version": "1.0.0",
  "sections": {
    "main": [
      {
        "stop_tap": {}
      }
    ]
  }
}
```

### Stop a specific call tap

```yaml
version: 1.0.0
sections:
  main:
    - stop_tap:
        control_id: my-tap-id
```

```json
{
  "version": "1.0.0",
  "sections": {
    "main": [
      {
        "stop_tap": {
          "control_id": "my-tap-id"
        }
      }
    ]
  }
}
```