Documentation Index
Fetch the complete documentation index at: https://developer.clopos.com/llms.txt
Use this file to discover all available pages before exploring further.
Purpose
Send a simple status update to mark an order as ignored.HTTP Request
Path Parameters
Unique identifier of the order.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
status | string | Yes | Set to IGNORE to cancel the order. |
Request Example
Response
200 OK — Order updated
400 Bad Request — Invalid status
Field Reference
| Field | Type | Description |
|---|---|---|
id | integer | Order identifier. |
venue_id | integer | Venue that owns the order. |
type | string | Source of the order. |
integration | string | Integration channel. |
integration_uuid | string (nullable) | UUID from the integration source. |
integration_id | string (nullable) | External ID from the integration source. |
customer_ref_id | string (nullable) | External customer reference ID. |
integration_status | string | State reported by the upstream integration. |
status | string | Updated lifecycle state (e.g., IGNORE). |
integration_response | object (nullable) | Response data from the integration, if any. |
created_at | string | Creation timestamp (ISO 8601). |
updated_at | string | Last update timestamp (ISO 8601). |
Notes
- Request body must include only the status field as shown.
- Currently, only the
IGNOREstatus transition is supported through this endpoint.