{ "error": "<string>", "message": "<string>", "details": {} }
Update the status of an existing order
PUT https://integrations.clopos.com/open-api/orders/{id}
status
IGNORE
curl --location --request PUT 'https://integrations.clopos.com/open-api/orders/108' \ --header 'Content-Type: application/json' \ --header 'x-token: oauth_example_token' \ --header 'x-brand: openapitest' \ --header 'x-venue: 1' \ --data '{ "status": "IGNORE" }'
{ "success": true, "data": { "id": 108, "status": "IGNORE" }, "timestamp": "2025-10-23 14:13:09", "unix": 1761211989 }
{ "success": false, "error": "validation_failed", "message": "Status is not allowed" }
Access token obtained from /auth endpoint
Brand identifier
Venue identifier
Order ID
The body is of type any.
any
Order updated successfully
Was this page helpful?