> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/events/recordingstopped.md).

# recordingStopped

Emitted when a recording has been stopped.&#x20;

#### Sample payload

```json
{
  "type": "recordingStopped"
}
```

#### Sample subscription code

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