***
id: 3680ef2d-f9db-4143-9f4f-7f2e55875a41
title: hangup
slug: /reference/hangup
description: Ends the call.
max-toc-depth: 3
----------------
End the call with an optional reason.
## **Properties**
An object that accepts the following properties.
**hangup.reason**
The reason for hanging up the call.
## **Examples**
### No parameters
```yaml
version: 1.0.0
sections:
main:
- answer: {}
- hangup: {}
```
```json
{
"version": "1.0.0",
"sections": {
"main": [
{
"answer": {}
},
{
"hangup": {}
}
]
}
}
```
### Set a hangup reason
```yaml
version: 1.0.0
sections:
main:
- answer: {}
- hangup:
reason: "busy"
```
```json
{
"version": "1.0.0",
"sections": {
"main": [
{
"answer": {}
},
{
"hangup": {
"reason": "busy"
}
}
]
}
}
```