Release Call
Release Call
The ReleaseCall
operation forces termination of the call with a particular reason. Typical examples of this might be
to indicate that the call was received from an out-of-zone area.
The ReleaseCall
operation has no exits. No further processing can occur after this operation.
Config Parameters
The ReleaseCall
operation config
attributes are as follows.
Parameter | Type | Description |
---|---|---|
reason
|
String |
The reason to end the call. This value is mapped to protocol-specific details such as an INAP/ISUP release cause or SIP response code. |
Example Operation
Here is an example ReleaseCall
operation in JSON representation.
{
"id": 15,
"type": "ReleaseCall",
"base_node": 22,
"config": {
"reason": "busy"
},
"exits": []
}
In this example:
- The call is released with the INAP release cause or SIP response code associated with
busy
. - No further processing will occur.
Exits
This operation type does not allow any exits.