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

recordingStopped

Emitted when a recording has been stopped.

Sample payload

{
  "type": "recordingStopped"
}

Sample subscription code

sambaFrame.on('recordingStopped', (event) => {
  console.log('Recording has been stopped');
});

Last updated