Skip to main content
PUT
/
orders
/
{id}
Update order
curl --request PUT \
  --url https://integrations.clopos.com/open-api/v2/orders/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-token: <api-key>' \
  --data '
{
  "status": "IGNORE"
}
'
{
  "success": true,
  "data": {
    "id": 108,
    "status": "IGNORE"
  },
  "timestamp": "2025-10-23 14:13:09",
  "unix": 1761211989
}

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.

Authorizations

x-token
string
header
required

JWT access token obtained from /v2/auth endpoint

Path Parameters

id
string
required

Order ID

Body

application/json
status
enum<string>
required

Set to IGNORE to cancel the order

Available options:
IGNORE
Example:

"IGNORE"

Response

Order updated successfully

success
boolean
data
object
timestamp
string
unix
integer