*** id: f73e4e23-4db4-44c3-b201-d6754fb1f6dc title: hangup slug: /node/reference/voice/call/hangup description: hangup method for the Call class. max-toc-depth: 3 ---------------- ### hangup * **hangup**(`reason?`): `Promise` Hangs up the call. #### Parameters | Name | Type | Description | | :-------- | :------------------------------------------------------------------------------- | :------------------------------ | | `reason?` | `"error"` \| `"hangup"` \| `"cancel"` \| `"busy"` \| `"noAnswer"` \| `"decline"` | Optional reason for hanging up. | #### Returns `Promise` #### Example ```js call.hangup(); ```