# Delete a variant option

URL: /en/docs/api/v1/variants/id/options/optionid/delete
Last Updated: 2026-07-30T21:15:30.754Z

## 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/variants/{id}/options/{optionId}

**Delete a variant option**

Permanently delete an option belonging to the given variant. Cascades to its content assignments.

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

**Path parameters:**

| Name | Type | Required | Description |
|---|---|---|---|
| `id` | string | Yes |  |
| `optionId` | string | Yes |  |

**Responses:**

- `200` - Variant option deleted
  - `success` (boolean)
  - `data` (object)
    - `id` (string)
- `401` - Unauthorized
- `404` - Option not found under this variant
- `500` - Internal server error

