***
id: b92b6443-8d2f-41cc-9af6-8ac6d2271ea3
slug: /sdks/reference/faxes/delete
title: Delete
sidebar-title: Delete
max-toc-depth: 3
----------------
Use this endpoint for the Fax method to delete a fax.
If the delete is successful, a 204 response, with no body, will be returned.
Please be sure you want to go through with this action, as it cannot be undone.
## Request examples
```javascript title="Node.js"
const { RestClient } = require('@signalwire/compatibility-api')
const client = RestClient('YourProjectID', 'YourAuthToken', { signalwireSpaceUrl: 'example.signalwire.com' })
client.fax.faxes('FaxSid')
.remove()
.then(fax => console.log(fax.sid))
.done();
```
```csharp
using System;
using System.Collections.Generic;
using Twilio;
using Twilio.Rest.Fax.V1;
class Program
{
static void Main(string[] args)
{
TwilioClient.Init("YourProjectID", "YourAuthToken", new Dictionary { ["signalwireSpaceUrl"] = "{SPACE}.signalwire.com" });
FaxResource.Delete(pathSid: "FaxSid");
}
}
```
```python
from signalwire.rest import Client as signalwire_client
client = signalwire_client("YourProjectID", "YourAuthToken", signalwire_space_url = 'example.signalwire.com')
client.fax.faxes('FaxSid').delete()
```
```ruby
require 'signalwire/sdk'
@client = Signalwire::REST::Client.new 'YourProjectID', 'YourAuthToken', signalwire_space_url: "example.signalwire.com"
@client.faxes('FaxSid').delete
```
## Response
A successful request returns a 204 status code with no body.