> ## Documentation Index
> Fetch the complete documentation index at: https://docs.riverside.fm/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Export

> Deletes an export by its ID.

<Warning>
  **This endpoint is deprecated.** Please migrate to the [v3 Delete Export](/endpoints-reference/v3/delete-export) endpoint.
</Warning>

**HTTP Method:** DELETE

**URL:** `/api/v1/exports/{export_id}`

**Authentication:** Requires API Key in the request header. 

**Path Parameters:**

* `export_id`- ID of the export to retrieve. To find this value, visit the project page, located the export under the ‘exports’ tab and click “Copy ID” in the three dots menu.

**Response**: None (HTTP status codes only).

**Status Codes**

* `204 No Content` Recording successfully deleted.
* `401 Unauthorized` Authentication failed.
* `404 Not Found` Recording not found.

### **Sample Request**

```md theme={null}
DELETE /api/v2/exports/1 HTTP/1.1
Host: platform.riverside.fm
Authorization: BEARER YOUR_API_KEY
```

### **Sample Response**

```md theme={null}
HTTP/1.1 204 No Content
```
