Update an order
POST /v2/orders/<orderRef>
Updates the order. You can update orders that have the same referenceId
and have orderedAt
values (purchase dates) within two days of another.
RequestResponse
curl -X POST <baseURL>/v2/orders/d680c9be-4c07-4731-857e-9602034b15f2' \
-u '<username>:<password>' \
-H 'Accept: application/json' \
--data-raw '
{
"pointOfSale": "spinair.com/france",
"channel": "WEB",
"currencyCode": "EUR",
"price": 12,
"orderedAt": "2024-12-19T12:07:18.149Z",
"referenceId": "342-ABD",
"paymentType": "Card",
"cardType": "Visa",
"status": "PURCHASED"
}'
RequestResponse
{
"href": "<baseURL>/v2/orders/d680c9be-4c07-4731-857e-9602034b15f2",
"ref": "d680c9be-4c07-4731-857e-9602034b15f2",
"createdAt": "2024-12-19T12:19:01.268Z",
"modifiedAt": "2024-12-26T09:41:04.268Z",
"orderedAt": "2024-12-19T12:07:18.149Z",
"currencyCode": "EUR",
"price": 12,
"referenceId": "342-ABD",
"paymentType": "Card",
"cardType": "Visa",
"pointOfSale": "spinair.com/france",
"channel": "WEB",
"status": "PURCHASED",
"contacts": {
"items": [...]
},
"consumers": {
"items": [...]
},
"orderItems": {
"items": [...]
}
}