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

  • answered — fires when the call is answered
  • failed — fires when the call fails
  • startCall — the method that initiates the call
  • CallSession — session type definition