# Delete Brand Image

> Learn how to delete brand assets from your workspace

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

---

## Overview

This endpoint allows you to delete a specific brand asset (image) from your workspace using its unique ID.```markdown tab="Endpoint"
https://api.orshot.com/v1/brand-assets/images/delete/:id
```## Request

<Tabs items=>
<Tab value="Request">```js
await fetch("https://api.orshot.com/v1/brand-assets/images/delete/101", {
  method: "DELETE",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>
<Tab value="Response">```json
{
  "message": "Asset successfully deleted",
  "id": "101"
}
```</Tab>
</Tabs>

## Path Parameters

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

## Error Responses

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

- The asset must belong to your workspace
- Once deleted, assets cannot be recovered
- The API key must have the appropriate permissions to delete assets

## Rate Limits

- 30 requests per minute per endpoint