---title: sidebar_position: 100---import Tabs from @theme/Tabs;import TabItem from @theme/TabItem;The verb ends a call. While ed calls are never answered, calls that use the verb for disconnection are still answered, becoming subject to billing.## Verb AttributesThe verb does not support any attributes.## NestingNo other verbs can be nested within and you cannot nest within any other verbs.## Examples### A Simple Hangup xml javascriptconst { RestClient } = require(@signalwire/compatibility-api);const response = new RestClient.LaML.VoiceResponse();response.hangup();console.log(response.toString()); phphangup(); echo $response;?> csharpusing Twilio.TwiML;using System;class Example{ static void Main() { var response = new VoiceResponse(); response.Hangup(); Console.WriteLine(response.ToString());; }} pythonfrom signalwire.voice_response import VoiceResponse, Hangupresponse = VoiceResponse()response.hangup()print(response) rubyrequire signalwire/sdkresponse = Signalwire::Sdk::VoiceResponse.new do |response| response.hangupendputs response.to_s SignalWire will answer the call then immediately hangup.