Skip to main content
Paid plans only stopTranscription(options?) Requires the caller to be a meeting owner or have 'transcription' in their canAdmin permission. Has no effect if transcription is not active. If transcript storage is enabled, the final transcript file is written when transcription stops.

Parameters

options?: DailyTranscriptionStopOptions
instanceId
string
The UUID of the transcription instance to stop. Omit to stop the default instance.

Return value

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

Example

// Stop the default transcription instance
call.stopTranscription();

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

See also