stopRecordCall

View as MarkdownOpen in Claude

Stop an active background call recording.

Parameters

controlId
string | undefinedDefaults to undefined

Identifier of the recording to stop. If not provided, the most recent recording is stopped.

Returns

FunctionResultthis, for chaining.

Example

1import { FunctionResult } from '@signalwire/sdk';
2
3const result = new FunctionResult('Recording stopped.')
4 .stopRecordCall();