# Delete a brand asset

URL: /en/docs/api/v1/brand/filetype/delete
Last Updated: 2026-07-30T21:15:29.725Z

## Description
No description available.

## Available Actions
- Execute DELETE request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### DELETE /api/v1/brand/{filetype}

**Delete a brand asset**

Removes the uploaded logo, hero banner, or custom font and clears the tenant association.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Path parameters:**

| Name | Type | Required | Description |
|---|---|---|---|
| `filetype` | enum: logo \| hero \| font | Yes | Type of brand asset to manage. Supports logo, hero banner, and custom font uploads. |

**Responses:**

- `200` - Asset removed successfully
  - `message` (string)
- `401` - Unauthorized
- `403` - Forbidden - Admin role required
- `404` - Asset not found for the tenant
- `500` - Internal server error while removing the asset

**Code samples:**

cURL:

```bash
curl -X DELETE "https://app.orbiqhq.com/api/v1/brand/font" \
  -H "Authorization: Bearer $ACCESS_TOKEN"
```

