The <Hangup/> Element
This element ends a call. If used as the first verb in a XML response, it simply hangs up the call and prevents further processing
Element Attributes
| Attribute Name | Description | Allowed Values | Default Value |
|---|---|---|---|
| reason | Reason to be sent | rejected, busy | none |
Examples
Example 1
The following code tells Basix just hangup the call (no answer).
1 2 3 |
<IVR> <Hangup/> </IVR> |
Example 2: Reject a call with a busy signal
1 2 3 |
<IVR> <Hangup reason="busy"/> </IVR> |
