Skip to main content
Paid plans only stopRecording(options?) Has no effect if no recording is currently running. If multiple recording instances are running, each must be stopped individually with its instanceId.

Parameters

instanceId
string
The UUID of the recording instance to stop. Omit to stop the default instance.

Return value

Returns void. Listen for recording-stopped to confirm the recording has ended.

Example

// Stop the default recording
call.stopRecording();

// Stop a specific instance
call.stopRecording({ instanceId: 'my-instance-id' });

See also