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}/state
https://customer-slug.api-se.stage.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/state
https://customer-slug.api-se.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/state
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/state' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"currentStatus": "checkout"
}'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/cart
https://customer-slug.api-se.stage.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/cart
https://customer-slug.api-se.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/cart
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/cart' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"reference": "string",
"items": [
{
"id": "ci_FpEzyBvBBUyKxkeNriFUxZOCje",
"reference": "string",
"name": "T-Shirt XL",
"sku": "A000123",
"productType": "physical",
"items": [
{}
],
"url": "https://example.com/products/A000123",
"imageUrl": "https://example.com/products/A000123/images/1",
"quantity": 2,
"unit": "st",
"price": {
"includingVat": 1234,
"excludingVat": 987.2
},
"total": {
"includingVat": 1234,
"excludingVat": 987.2
},
"originalTotal": {
"includingVat": 1234,
"excludingVat": 987.2
},
"vatRate": 0.25,
"discounts": [
{
"type": "item",
"name": "string",
"reference": "string",
"description": "string",
"code": "string",
"value": {
"includingVat": 1234,
"excludingVat": 987.2
},
"attributes": {
"property1": null,
"property2": null
}
}
],
"logistics": {
"weight": 2500,
"height": 100,
"width": 50,
"length": 200,
"tags": [
"string"
],
"shippingDate": "2019-08-24T14:15:22Z"
},
"upsell": true,
"attributes": {
"property1": null,
"property2": null
}
}
],
"discounts": [
{
"type": "item",
"name": "string",
"reference": "string",
"description": "string",
"code": "string",
"value": {
"includingVat": 1234,
"excludingVat": 987.2
},
"attributes": {
"property1": null,
"property2": null
}
}
],
"total": {
"includingVat": 1234,
"excludingVat": 987.2
},
"attributes": {
"property1": null,
"property2": null
}
}'Billing address
Number used to identify individuals. E.g. could be used for Personal identity number (personnummer) in Sweden.
Number used to identify organizations or legal persons. E.g. could be used for Corporate identity number. (organisationsnummer in Sweden)
https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/customer/billing
https://customer-slug.api-se.stage.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/customer/billing
https://customer-slug.api-se.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/customer/billing
curl -i -X PUT \
'https://customer-slug.api-se.playground.norce.tech/checkout/order/api/v0/checkout/orders/{order_id}/customer/billing' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"type": "Person",
"givenName": "Rosalinainho",
"familyName": "Undulatsson",
"careOf": "Olleinho Jyckesson",
"reference": "string",
"organizationName": "Storm",
"streetAddress": "Adaptivevägen 18",
"streetAddress2": "Lgh 1203",
"postalCode": "955 60",
"city": "Boden",
"region": "Norrbotten",
"country": "SE",
"phone": "0753892233",
"email": "rosalinainho.undulatsson@example.com",
"nationalIdentificationNumber": "890201-3286",
"organizationIdentificationNumber": "212000-1355",
"attributes": {
"property1": null,
"property2": null
}
}'