cURL
curl --request DELETE \ --url https://integrations.clopos.com/open-api/receipts/{id} \ --header 'x-brand: <api-key>' \ --header 'x-token: <api-key>' \ --header 'x-venue: <api-key>'
{ "success": true, "message": "<string>", "time": 123, "timestamp": "<string>", "unix": 123 }
Permanently remove a receipt by its identifier
DELETE https://integrations.clopos.com/open-api/receipts/{id}
id
curl --location --request DELETE "https://integrations.clopos.com/open-api/receipts/16" \ -H "x-token: oauth_example_token" \ -H "x-brand: openapitest" \ -H "x-venue": "1"
{ "success": true, "message": "Receipt removed successfully", "time": 112, "timestamp": "2025-10-06 09:30:15", "unix": 1759743015 }
{ "success": false, "error": "not_found", "message": "Receipt not found" }
Access token obtained from /auth endpoint
Brand identifier
Venue identifier
Receipt ID
Receipt deleted successfully
Was this page helpful?