Event: "call:ended"

Whenever a member of the call declines or ends their call, all other call members will receive a call:ended event. This event does not mean that the current user's call has ended.

Properties

PropertyTypeDescription
callCallUpdated Call object

Examples

client.on('call:ended', function callEnded(call) {
console.log('A member has left the call');
});