Reliefs Docs
Management APIProducts

Delete a product

Deletes a published product from a restaurant. Handles cascade deletion of related resources (QR codes, menu popups, pending drafts). The product must belong to the specified restaurant. Requires a management API key (`mk_`).

DELETE
/api/v1/management/restaurants/{restaurantId}/products/{productId}

Authorization

ManagementApiKey
X-Api-Key<token>

Management API key — starts with mk_. Generate one from your dashboard.

In: header

Path Parameters

restaurantId*string

Restaurant ID

Formatuuid
productId*string

Product ID

Formatuuid

Response Body

application/json

application/json

application/json

curl -X DELETE "https://example.com/api/v1/management/restaurants/497f6eca-6276-4993-bfeb-53cbbbba6f08/products/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "success": true,  "data": {    "deleted": true,    "productId": "dcd53ddb-8104-4e48-8cc0-5df1088c6113"  }}