***

title: delete_media
slug: /reference/python/rest/compat/faxes/delete-media
description: Delete a media item from a fax.
max-toc-depth: 3
---------------------

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

Delete a media item from a fax.

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

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

client.compat.faxes.delete_media("FX...", "ME...")
```