Skip to main content
Emitted when the SIP client successfully registers with the SIP server. After this event is emitted, 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