Skip to main content
Emitted when an outgoing call is ringing (progress). This event indicates that the remote party’s phone is ringing and the call has not yet been answered.

Category

Call

Callback Parameters

ParameterTypeDescription
sessionCallSessionThe current call session.

Example

client.on('ringing', (session) => {
  console.log('Call is ringing. Session ID:', session.id);
});

More Information