Skip to main content
DELETE
/
api
/
v1
/
products
/
{productId}
Delete Product
curl --request DELETE \
  --url https://api.sequenzy.com/api/v1/products/{productId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "deleted": true
}
Delete a product previously pushed via the Commerce API, identified by your productId. Products synced from Shopify/WooCommerce are not affected by this endpoint.

Path Parameters

productId
string
required
Your product identifier (the productId used when upserting).
curl -X DELETE "https://api.sequenzy.com/api/v1/products/SKU-PROTEIN-1KG" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "deleted": true
}