Measurements for Cargo and Home Delivery services
For cargo services (5100, 5300, 9100), Weight is mandatory and one of the Volume / Load Meters / Dimensions / Number of Pallets is mandatory.
For home delivery services (e.g. DOUBLE_INDOOR, CURBSIDE), Weight is mandatory and one of Volume / Dimensions are mandatory.
Request example
Cargo Norway - Number of Pallets & Load Meters
XML
<product>
<id>5100</id>
</product>
<packages>
<package>
<weightInKg>50</weightInKg>
<volumeInDm3>20</volumeInDm3>
<numberOfPallets>2</numberOfPallets>
<loadMeters>1</loadMeters>
</package>
</packages>
JSON
"product": {
"id": "5100"
},
"packages": [
{
"weightInKg": 50,
"volumeInDm3": 20,
"numberOfPallets": 2,
"loadMeters": 1
}
]