The Orders namespace has Entities and Operations used for orders and other related Entities such as DeliveryNotes and Invoices. This namespace has nothing to do with the Checkout process where orders are created, but is more related to order history shown on pages like MyPage and such. The Order history in Storm is mostly a snapshot view of the orders as they looked when they got created in Storm, unless process integrations exists where DeliveryNotes and Invoices are passed to Storm.
COMMERCE SERVICES
/Order Service
//
CustomerData
Documentation OrderService (1.1)
Download OpenAPI description
Languages
Servers
https://customer-slug.api-se.norce.tech/commerce/order/1.1/
CustomerData
{ "Company": { "Id": 0, "No": "string", "Name": "string", "OrgNo": "string" }, "Customer": { "Id": 0, "No": "string", "FirstName": "string", "LastName": "string", "SSN": "string", "Email": "string", "Phone": "string", "CellPhone": "string" }, "Address": { "Line1": "string", "Line2": "string", "CareOf": "string", "City": "string", "ZipCode": "string", "Country": "string", "CountryCode": "string", "Region": "string", "ShippingPhoneNumber": "string", "GlobalLocationNo": "string" }, "DropPointCode": "string" }
DeliveryNote
The external number of the DeliveryNote. Usually a number from the ERP system. MaxLength: 50.
The external order number of the Order related to the DeliveryNote. This usually comes from an ERP. MaxLength: 50.
The culture code of the DeliveryNote. This is the culture code used when asking for DeliveryNotes, not the original. MaxLength: 16.
Package information for the DeliveryNote.
The status text of the DeliveryNote. See ListOrderStatuses for information about available statuses. MaxLength: 50.
{ "Id": 0, "NoteNo": "string", "DeliveryDate": "2019-08-24T14:15:22Z", "NoteText": "string", "DeliveryMode": "string", "OrderNo": "string", "OrderDate": "2019-08-24T14:15:22Z", "Culture": "string", "YourReference": "string", "SellTo": { "Company": { … }, "Customer": { … }, "Address": { … }, "DropPointCode": "string" }, "BillTo": { "Company": { … }, "Customer": { … }, "Address": { … }, "DropPointCode": "string" }, "ShipTo": { "Company": { … }, "Customer": { … }, "Address": { … }, "DropPointCode": "string" }, "SMSNotificationNumber": "string", "Items": [ { … } ], "Packages": [ { … } ], "DivisionCode": "string", "Status": "string", "Info": [ { … } ] }