DELETE /product-offers/{id}

Delete a product offer

Product Offers

Description

Delete a specific product offer.

Authentication Required: User must be authenticated and have the 'merchant' feature flag.

Authorization: Merchant users can only delete their own offers.

Parameters

id integer path required
Offer ID

Responses

200 Offer deleted successfully
application/json
statusstring
Example: success
messagestring
Example: Offer deleted successfully
401 Authentication required
application/json
Example:
{
  "status": "error",
  "message": "Not authenticated or insufficient permissions"
}
404 Offer not found
application/json
Example:
{
  "status": "error",
  "message": "Offer not found"
}