Sends shipment request to POS adapter. Must have a POS integration through Norce.
Documentation Norce [Storm] Connect Order Service (4.0)
The Order Service has Entities and Operations concerned with orders created in Norce [Storm].
Download OpenAPI description
Languages
Servers
https://connect.lab.storm.io/4.0/api/
https://connect.lab.storm.io/4.0/api/Order/SendPosShipment
- cURL
- JS
- C#
curl -i -X POST \
https://connect.lab.storm.io/4.0/api/Order/SendPosShipment \
-H 'Content-Type: application/json' \
-d '{
"ApplicationKey": "15d62d1f-3a4e-4111-845a-4db40bf08e87",
"DeliveryNoteNo": "string",
"InvoiceNo": "string",
"ShipmentNo": "string",
"SourceWarehouseCode": "string",
"TargetWarehouseCode": "string",
"Barcode": "string",
"CarrierName": "string",
"CarrierReference": "string",
"CarrierTrackingUrl": "http://example.com",
"Comment": "string",
"Items": [
{
"LineNo": 0,
"PartNo": "string",
"Quantity": 0,
"Name": "string",
"PackageNo": "string",
"Price": 0,
"PurchaseCost": 0,
"UnitCost": 0
}
],
"ReceiverName": "string",
"SenderName": "string",
"ShipmentPackages": [
{
"PackageNo": "string",
"Barcode": "string",
"Comment": "string"
}
],
"ShipmentWarehouse": {
"Box": "string",
"CareOf": "string",
"City": "string",
"Country": "string",
"Line1": "string",
"Line2": "string",
"Region": "string",
"Type": "string",
"ZipCode": "string"
},
"TargetWarehouseAddress": {
"Box": "string",
"CareOf": "string",
"City": "string",
"Country": "string",
"Line1": "string",
"Line2": "string",
"Region": "string",
"Type": "string",
"ZipCode": "string"
}
}'