*** id: 3a19812b-f53c-4043-a745-71d93128eaac title: stop\_record\_call slug: /reference/stop-record-call description: Stop an active background recording. max-toc-depth: 3 ---------------- 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" } } ] } } ```