> ## 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

> Permanently deletes an export.

**HTTP Method**: DELETE

**URL**: `/api/v3/exports/{exportId}`

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

**Path Parameters**:

| Parameter  | Type   | Description                                   |
| ---------- | ------ | --------------------------------------------- |
| `exportId` | string | The unique identifier of the export to delete |

**Response**: No content on success

**Rate limit**: Once every 1 second.

**Status Codes**:

* `204 No Content` Export successfully deleted.
* `401 Unauthorized` Authentication failed.
* `404 Not Found` Export not found or not accessible.
* `429 Too Many Requests` Rate limit exceeded.

### **Sample Request**

```bash theme={null}
DELETE /api/v3/exports/exp_123 HTTP/1.1
Host: platform.riverside.com
Authorization: Bearer YOUR_API_KEY
```

### **Sample Response**

```
HTTP/1.1 204 No Content
```
