***

title: update_recording
slug: /reference/python/rest/compat/calls/update-recording
description: Update a call recording (pause, resume, or stop).
max-toc-depth: 3
---------------------

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

Update a call recording (e.g., pause, resume, or stop).

<EndpointSchemaSnippet endpoint="POST /Accounts/{AccountSid}/Calls/{CallSid}/Recordings/{Sid}" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /Accounts/{AccountSid}/Calls/{CallSid}/Recordings/{Sid}" />

## **Example**

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

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

client.compat.calls.update_recording("CA...", "RE...", Status="paused")
```