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

# deleteMedia

> Delete a media item from a fax.

Delete a media item from a fax.

<EndpointSchemaSnippet endpoint="DELETE /Accounts/{AccountSid}/Faxes/{FaxSid}/Media/{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.deleteMedia("FX...", "ME...");
```