Skip to main content
Recordings are available on the CometChat Dashboard → Calls section.
Record voice and video calls for playback, compliance, or archival purposes. Recording is built on top of the Call Session — you add recording listeners to your call settings and optionally control recording programmatically.

Setup

Add onRecordingStarted and onRecordingStopped callbacks to your OngoingCallListener when building call settings. These fire for all participants when any user starts or stops recording.
The onRecordingStarted callback receives an event object — see the OngoingCallListener reference for the full shape. The onRecordingStopped callback receives no arguments.
Always remove listeners when they’re no longer needed (e.g., on component unmount or page navigation). Failing to remove listeners can cause memory leaks and duplicate event handling.

Settings for call recording

CallSettings Options

Programmatic Control

If you’re building a custom UI without the default layout, use these methods to control recording during an active call.

Start Recording

You can use the startRecording() method to start call recording.

Stop Recording

You can use the stopRecording() method to stop call recording.

Downloading Recordings

Call recordings are available on the CometChat Dashboard under the Calls section. Click the three-dot menu and select “View Recordings”.

Next Steps

Default Calling

Implement ringing call flows with accept/reject functionality

Call Logs

Retrieve and display call history for users and groups