Option B: Sending a Single Delivery per order line
Sending the order
{
"order": {
"supplierAccountNumber": "{{supplierAccountNumber}}",
"purchaseOrderNumber": "PO123456789",
"destination": {
"names": [
"My Company Warehouse",
"Dock 12"
],
"countryCodeIso2": "NL"
}
},
"lines": [
{
"position": "0001",
"item": {
"name": "Round tube 60x45",
"purchaseUnitOfMeasureIso": "PCE"
},
"scheduledDelivery": {
"date": "2026-01-31",
"quantity": 5
},
"prices": {
"netPrice": {
"priceInTransactionCurrency": {
"value": 1234.56,
"currencyIso": "EUR"
}
},
"priceUnitOfMeasureIso": "PCE",
"priceUnitQuantity": 100
}
},
{
"position": "0002",
"item": {
"name": "Round tube 60x45",
"purchaseUnitOfMeasureIso": "PCE"
},
"scheduledDelivery": {
"date": "2026-02-07",
"quantity": 10
},
"prices": {
"netPrice": {
"priceInTransactionCurrency": {
"value": 1234.56,
"currencyIso": "EUR"
}
},
"priceUnitOfMeasureIso": "PCE",
"priceUnitQuantity": 100
}
}
]
}Last updated