Event: "call:answered"

When a user has multiple active sessions and receives a call, each session will receive the call:incoming event. Once the call is answered by one of the sessions, all other sessions will receive the call:answered event.

Examples

client.on('call:answered', function callAnswered() {
console.log('Call has been answered in a different session');
});