Build 2026-01-12 08:21:29
The Order Management API is used to create and handle orders
https://{slug}.api-se.playground.norce.tech/checkout/order/
https://{slug}.api-se.stage.norce.tech/checkout/order/
https://{slug}.api-se.norce.tech/checkout/order/
https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/consents/{consent_id}
https://customer-slug.api-se.stage.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/consents/{consent_id}
https://customer-slug.api-se.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/consents/{consent_id}
curl -i -X PATCH \
'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/consents/{consent_id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"id": "ci_newsleter",
"checked": true,
"text": "string",
"required": true
}'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/attributes
https://customer-slug.api-se.stage.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/attributes
https://customer-slug.api-se.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/attributes
curl -i -X PATCH \
'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/attributes' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"property1": null,
"property2": null
}'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/validations
https://customer-slug.api-se.stage.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/validations
https://customer-slug.api-se.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/validations
curl -i -X POST \
'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/validations' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"adapterId": "jetshop_adapter",
"url": "http://specific-feature-adapter.norce.io/api/v1/callbacks/orders/{order_id}/specific-callback"
}'