> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# delete

> Delete a fax record.

Delete a fax record.

<EndpointSchemaSnippet endpoint="DELETE /Accounts/{AccountSid}/Faxes/{Sid}" />

## **Example**

```typescript {8}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

await client.compat.faxes.delete("FX...");
```