cURL
curl --request DELETE \ --url https://api.zenflow.com.ar/api/v1/products/{id} \ --header 'X-API-Key: <api-key>'
Delete (deactivate) a product
write:products
DELETE /api/v1/products/{id}
curl -X DELETE "https://api.zenflow.com.ar/api/v1/products/100" \ -H "X-API-Key: zenflow_live_your_key"
{ "success": true, "data": { "message": "Product deleted successfully", "product_id": 100 } }
{ "success": false, "error": { "code": "not_found", "message": "Product not found" } }