***
id: 4e6ccd4d-5731-43ad-8dbf-e963044a4b4b
slug: /sdks/reference/calls/delete
title: Delete
sidebar-title: Delete
max-toc-depth: 3
----------------
Use this endpoint for the Calls method to delete a call.
If the delete is successful, a 204 response, with no body, will be returned.
## Request examples
```javascript title="Node.js"
const { RestClient } = require('@signalwire/compatibility-api')
const client = RestClient('YourProjectID', 'YourAuthToken', { signalwireSpaceUrl: 'example.signalwire.com' })
client.calls('Sid')
.remove()
.then(call => console.log(call.sid))
.done();
```
```csharp
using System;
using System.Collections.Generic;
using Twilio;
using Twilio.Rest.Api.V2010.Account;
class Program
{
static void Main(string[] args)
{
TwilioClient.Init("YourProjectID", "YourAuthToken", new Dictionary { ["signalwireSpaceUrl"] = "{SPACE}.signalwire.com" });
CallResource.Delete(pathSid: "Sid");
}
}
```
```python
from signalwire.rest import Client as signalwire_client
client = signalwire_client("YourProjectID", "YourAuthToken", signalwire_space_url = 'example.signalwire.com')
client.calls('Sid').delete()
```
```ruby
require 'signalwire/sdk'
@client = Signalwire::REST::Client.new 'YourProjectID', 'YourAuthToken', signalwire_space_url: "example.signalwire.com"
@client.calls('Sid').delete
```
## Response
A successful request returns a 204 status code with no body.