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
| Parameter | Type | Description |
|---|
session | CallSession | The current call session. |
Example
client.on('ringing', (session) => {
console.log('Call is ringing. Session ID:', session.id);
});
Last modified on June 2, 2026