Skip to main content

Shipments

Get shipment delivery note by EAN

Endpoint: POST /pos/delivery-notes/by-ean

Requried query parameters

ParameterRequiredDescription
eanYesThe EAN number of the shipment delivery note

Data response

ParameterRequiredDefaultDescription
shipment_delivery_noteYesShipment delivery note data

Shipment delivery note data

ParameterRequiredDefaultDescription
shipment_nrYesIdentification of the shipment
colliYesThe colli of the shipment

Shipment delivery note colli data

ParameterRequiredDefaultDescription
track_traceThe track trace of the colli
track_trace_linkThe track trace link of the colli
linesYesThe lines of the colli

Shipment delivery note colli lines

ParameterRequiredDefaultDescription
full_nameYesThe full name of the product
attributesYesA key-value object of the variant attributes
skuYesThe SKU of the variant
eanYesThe EAN of the variant
packedYesThe quantity of the line
price_before_discountYesThe unit price of the line before discount and ex VAT
discount_amountYesThe unit discount given as an amount ex VAT
discount_percentageYesThe discount given as a percentage
net_priceYesThe unit price of the line ex VAT and after discount
vat_amountYesThe unit VAT amount
total_priceYesThe total price of the line ex VAT. This is calculated as packed * net_price
total_price_after_vatYesThe total price of the line incl VAT

Example

POST /pos/delivery-notes/by-ean?ean=57542340013002897

{
"shipment_delivery_note": {
"shipment_nr": "1656941373-1",
"colli": [
{
"track_trace": "00571518601003010141",
"track_trace_link": null,
"lines": [
{
"full_name": "Amazing T-shirt Black S",
"attributes": {
"Size": "S",
"Color": "Black"
},
"sku": "amazing-black-S",
"ean": "5714694592776",
"packed": 3
},
{
"full_name": "Amazing T-shirt Black M",
"attributes": {
"Size": "M",
"Color": "Black"
},
"sku": "amazing-black-M",
"ean": "5714694592769",
"packed": 3
}
]
},
{
"track_trace": "00571518601003010141",
"track_trace_link": null,
"lines": [
{
"full_name": "Amazing T-shirt Black S",
"attributes": {
"Size": "S",
"Color": "Black"
},
"sku": "amazing-black-S",
"ean": "5714694592776",
"packed": 3
}
]
}
]
}
}