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
https://customer-slug.api-se.stage.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/consents
https://customer-slug.api-se.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/consents
curl -i -X PATCH \
'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/consents' \
-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}/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 DELETE \
'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 'x-channel: 1' \
-H 'x-merchant: norce'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
}'