For the complete documentation index, see llms.txt. This page is also available as Markdown.

recordingFailed

Emitted when a recording has failed due to an unexpected error.

Sample payload

{
  "type": "recordingFailed"
}

Sample subscription code

sambaFrame.on('recordingFailed', (event) => {
  console.log('Recording has failed');
});

Last updated