# Delete Audio

> Learn how to delete a brand audio file from your workspace

- **URL**: https://orshot.com/docs/api-reference/brand-audio-delete

---

## Overview

This endpoint allows you to delete a specific brand audio file from your workspace using its unique ID.```markdown tab="Endpoint"
https://api.orshot.com/v1/brand-assets/audio/delete/:id
```## Request```js
await fetch("https://api.orshot.com/v1/brand-assets/audio/delete/42", {
  method: "DELETE",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>```json
{
  "message": "Audio successfully deleted",
  "id": "42"
}
```</Tab>
</Tabs>

## Path Parameters

| Parameter | Type   | Required | Description                                  |
| --------- | ------ | -------- | -------------------------------------------- |
| `id`      | Number | Yes      | The unique identifier of the audio to delete |

## Error Responses

### Audio Not Found (404)```json
{
  "error": "Audio not found"
}
```### Missing Audio ID (400)```json
{
  "error": "Audio ID is required"
}
```### Unauthorized (403)```json
{
  "error": "Access Forbidden"
}
```## Notes

- The audio must belong to your workspace
- Once deleted, audio cannot be recovered

## Rate Limits

- 30 requests per minute per endpoint