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

# stop_record_call

> Stop an active background recording.

Stop an active background recording.

An object that accepts the following properties.

## **Properties**

Identifier for the recording to stop

## **Variables**

Read by the method:

* **record\_control\_id:** (in) control ID of last recording started.

Set by the method:

* **stop\_record\_call\_result:** (out) `success` | `failed`

## **Examples**

### Stop last call recording

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

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

### Stop a specific call recording

```yaml
version: 1.0.0
sections:
  main:
    - stop_record_call:
        control_id: my-recording-id
```

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