The Order Service has Entities and Operations concerned with orders created in Norce Commerce.
COMMERCE CONNECT
/Order Service
/- Update the status on an order.
Cancel an order
Import a delivery note.
Update the status on an o...
Documentation Norce Commerce Connect Order Service (4.0)
Download OpenAPI description
Languages
Servers
https://customer-slug.api-se.norce.tech/commerce/connect/4.0/
https://customer-slug.api-se.norce.tech/commerce/connect/4.0/Order/CancelOrder
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.norce.tech/commerce/connect/4.0/Order/CancelOrder \
-H 'Content-Type: application/json' \
-d '{
"ClientOrderRef": 0,
"ErpOrderNo": "string",
"Payments": [
{
"PaymentCode": 0,
"PaymentMethodCode": "string",
"PaymentRef": "string",
"AdditionalInfo": [
{
"Code": "string",
"Code2": "string",
"Id": 0,
"Value": "string"
}
],
"Amount": 0,
"CurrencyCode": "string",
"PaymentName": "string"
}
]
}'
Request
Created a delivery note from another system in Norce.
Read more about the method here.
- application/json
- application/xml
Delivery note to import.
List of packages for delivery tracking.
https://customer-slug.api-se.norce.tech/commerce/connect/4.0/Order/CreateDeliveryNote
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.norce.tech/commerce/connect/4.0/Order/CreateDeliveryNote \
-H 'Content-Type: application/json' \
-d '{
"DeliveryDate": "string",
"NoteNo": "string",
"OrderNo": "string",
"BuyerCompanyCode": "string",
"BuyerCustomerCode": "string",
"DeliveryAddress": {
"Box": "string",
"CareOf": "string",
"City": "string",
"Country": "string",
"Line1": "string",
"Line2": "string",
"Region": "string",
"Type": "string",
"ZipCode": "string"
},
"DeliveryAttention": "string",
"DeliveryMode": "string",
"DeliveryName": "string",
"DeliverynoteItems": [
{
"ItemNo": "string",
"Qty": 0,
"RowNumber": 0,
"Comment": "string",
"Description": "string",
"Id": 0
}
],
"DeliveryNotePackages": [
{
"Id": 0,
"ParcelNumber": "string",
"StatusId": 0
}
],
"DivisionCode": "string",
"IsPrinted": true,
"NoteText": "string",
"StatusId": 0
}'
Request
Updates the status on an order.
Read more about the method here.
- application/json
- application/xml
Order status request.
Order status.
Enum"Created""Allocation""Confirmed""BackOrder""Delivered""Invoiced""Cancelled""CreditControl""PartlyDelivered""Acknowledged"
https://customer-slug.api-se.norce.tech/commerce/connect/4.0/Order/SendOrderStatus
- cURL
- JS
- C#
curl -i -X POST \
https://customer-slug.api-se.norce.tech/commerce/connect/4.0/Order/SendOrderStatus \
-H 'Content-Type: application/json' \
-d '{
"ClientOrderRef": 0,
"ErpOrderNo": "string",
"OrderStatus": "Created",
"AccountId": 0,
"Infos": [
{
"Code": "string",
"Value": "string"
}
]
}'