Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cognigy.com/llms.txt

Use this file to discover all available pages before exploring further.

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