> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Product

> Delete a product pushed via the Commerce API

Delete a product previously pushed via the [Commerce API](/concepts/custom-commerce), identified by your `productId`. Products synced from Shopify/WooCommerce are not affected by this endpoint.

## Path Parameters

<ParamField path="productId" type="string" required>
  Your product identifier (the `productId` used when upserting).
</ParamField>

```bash theme={null}
curl -X DELETE "https://api.sequenzy.com/api/v1/products/SKU-PROTEIN-1KG" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "deleted": true
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": "Product not found"
  }
  ```
</ResponseExample>
