Update a Recording
Use this endpoint for the Recordings method to pause, resume or stop a Recording. You can control what happens while recording is paused (replace pause with silence or skip it).
Parameters
Parameter | Description |
---|---|
Status Required | The new status of the Recording. Possible values are paused , in-progress and stopped . |
PauseBehavior Optional | What to do while recording is paused. Possible values are skip and silence . Default value is silence . |
Request
- cURL
curl https://example.signalwire.com/api/laml/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Recordings/{Sid}.json \
-X POST \
-u "YourProjectID:YourAuthToken" \
--data-urlencode "Status=paused" \
--data-urlencode "PauseBehavior=skip"