Skip to main content
Emitted when the call is answered by the remote party.

Category

Call

Callback Parameters

ParameterTypeDescription
sessionCallSessionThe active call session.

Example

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

More Information