# Delete DRAFT product

## Delete DRAFT product

<mark style="color:red;">`DELETE`</mark> `https://{workspace}.myeshopbox.com/product-engine/api/v1/products/{sku}`

This endpoint deletes the DRAFT product from the workspace.

#### Path Parameters

| Name | Type   | Description                                                   |
| ---- | ------ | ------------------------------------------------------------- |
| sku  | string | unique code that identifies the characteristic of the product |

#### Headers

| Name           | Type   | Description                                 |
| -------------- | ------ | ------------------------------------------- |
| Authentication | string | The Bearer token to grant access to the API |

{% tabs %}
{% tab title="200 When the product is successfully deleted." %}

```
```

{% endtab %}

{% tab title="412 When the product one is trying to delete is in ACTIVE status." %}

```
{
    "error": {
        "errors": [
            {
                "domain": "global",
                "reason": "backendError",
                "message": "Failed: Can't delete an ACTIVE Product"
            }
        ],
        "code": 412,
        "message": "Failed: Can't delete an ACTIVE Product"
    }
}
```

{% endtab %}
{% endtabs %}
