Client Registration

This webhook is sent when a SIP client tries to register, it is configured at the account level

Payload

The payload of this webhook request is an object.
methodstringRequired

sip request method

realmstringRequired

sip realm

usernamestringRequired

sip username provided

expiresdoubleRequired

expiration requested, in seconds

noncestringRequired

nonce value

uristringRequiredformat: "uri"

sip uri in request

responsestringRequired

digest value calculated by the client

schemestringOptional

encryption protocol

algorithmstringOptional

encryption algorithm used, default to MD5 if not provided

qopstringOptional

qop value

cnoncestringOptional

cnonce value

ncstringOptional

nc value

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "method": "REGISTER",
3 "realm": "mycompany.com",
4 "username": "daveh",
5 "expires": 3600,
6 "nonce": "InFriVGWVoKeCckYrTx7wg==\"",
7 "uri": "sip:mycompany.com",
8 "response": "be641cf7951ff23ab04c57907d59f37d",
9 "scheme": "digest",
10 "algorithm": "MD5",
11 "qop": "auth",
12 "cnonce": "6b8b4567"
13}
Built with