Skip to main content
Emitted when the SIP client successfully registers with the SIP server. After this event fires, the client is ready to make calls using startCall().

Category

Connection

Callback Parameters

None.

Example

client.on('registered', () => {
  console.log('SIP client registered โ€” ready to make calls');
});

More Information

  • unregistered โ€” fires when the client is unregistered
  • connected โ€” fires when the WebSocket connection is established
  • connect โ€” the method that triggers registration