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

  • ended โ€” fires when the call ends normally
  • failed โ€” fires when the call fails
  • startCall โ€” the method that initiates the call
  • CallSession โ€” session type definition