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

# Delete Product

> Delete a product from Shopify and soft-delete locally

<Note>
  **V2 Preview** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Delete a product from Shopify and soft-delete it in the local database. Accepts a Shopify numeric ID, Shopify GID, or MongoDB ObjectId. Vendor tokens can only delete their own products.

## Path Parameters

<ParamField path="productId" type="string" required>
  Product ID (Shopify numeric, GID, or MongoDB ObjectId).
</ParamField>

## Response

```json 200 theme={null}
{
  "success": true,
  "data": { "deleted": true }
}
```

## Example

```bash theme={null}
curl -X DELETE "https://staging-api.puppetvendors.com/products/507f1f77bcf86cd799439013" \
  -H "x-access-token: YOUR_VENDOR_JWT"
```
