SIP Decline

Reject an incoming call with a specific status

The config verb is non-blocking.

The session ends immediately after the action is executed.

1{
2 "verb": "sip:decline",
3 "status": 480,
4 "reason": "Gone Fishing",
5 "headers" : {
6 "Retry-After": 1800
7 }
8}

Parameters

status
numberRequired

A valid SIP status code in the range 4XX - 6XX.

headers
object

SIP headers to include in the response.

reason
string

A brief description.
Default: The well-known SIP reasons associated with the specified status code.