Build 2026-01-12 15:09:14
The Norce Adapter API is used to create and manage an Order based on a Norce Checkout Basket.
https://checkout-norce-adapter.test.norce.tech/
Context about the order
Language and region of the customer, RFC-1766
https://checkout-norce-adapter.test.norce.tech/api/v1/orders
curl -i -X POST \
https://checkout-norce-adapter.test.norce.tech/api/v1/orders \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"cartReference": 56393,
"culture": "fr-FR",
"currency": "EUR",
"country": "SE",
"priceListSeed": [
16,
21,
332
]
}'{ "id": "o" }
https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}
curl -i -X PUT \
'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"priceListSeed": [
16,
21,
332
]
}'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/items
curl -i -X POST \
'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/items' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"partNo": "string",
"quantity": 2
}'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/items/{itemId}
curl -i -X PATCH \
'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/items/{itemId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"quantity": 2
}'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/items/{itemId}
curl -i -X DELETE \
'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/items/{itemId}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'x-channel: 1' \
-H 'x-merchant: norce'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/discounts
curl -i -X POST \
'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/discounts' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"code": "string"
}'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/discounts
curl -i -X DELETE \
'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/cart/discounts' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'x-channel: 1' \
-H 'x-merchant: norce'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/validate
curl -i -X POST \
'https://checkout-norce-adapter.test.norce.tech/api/v1/orders/{orderId}/validate' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'x-channel: 1' \
-H 'x-merchant: norce'