Xml Shipment Upload


DESCRIPTION

This XML is used to upload shipments to the system.

 

BODY
NameTypeRequiredDescription
<masterAwb>   
awbstring(34)YesAir waybill number. The system validates that the data is sent in the field and validates if there is no duplication of information.
fechaDespachoDate(yyyy-MM-dd)YesShipment date.
origenstring(3)YesIATA origin airport code.
destinostring(3)YesIATA destination airport code.
<house>   
hawbstring(12)NoHouse air waybill number.
codigoClienteExportadorstring(16)YesCustomer integration code.
nombreClienteExportadorstring(256)NoCustomer name.
codigoCultivostring(16)YesExporter integration code.
nombreCultivostring(256)NoExporter name.
packingintNoPacking.
<box>   
codigoClientestring(16)YesShip-to integration code. When the box is for inventory, you should use “NULL”.
nombreClientestring() ***NoShip-to name.
codigoPiezastring(14)YesBarcode number has to be a unique number per box, maximum 14 digits long. You will be provided with a 2-letter prefix that should be used together with an alphanumeric sequential.
codigoProductostring(8)YesProduct integration code.
descripcionProductostring(250)NoProduct description.
empaquestring(5)YesBox type (ex. FB, HB, QB…).
unidadesintYesNumber of units in the box.
piezasintYesNumber of pieces.
largointYesLength of the piece. It cannot be 0.
altointYesHeight of the piece. It cannot be 0.
anchointYesWidth of the piece. It cannot be 0.
kilosintYesWeight of the piece in kg.
tallos_ramointYesNumber of stems per bunch.
ramos_cajaintYesNumber of bunches per box.
preciointYesPrice per unit.
precio_ramointYesPrice per bunch.
postring(15)YesPo Number.
caja_transportadorstring(16)YesTrucking company code.
caja_fecha_transportadoDate(yyyy-MM-dd)YesShipping date to the final customer.
EXAMPLE

<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<masterAwb>
<awb>071-4431 3317</awb>
<fechaDespacho>2024-09-09</fechaDespacho>
<origen>MDE</origen>
<destino>AMS</destino>
<House>
<hawb>[house number, not mandatory]</hawb>
<codigoClienteExportador>[customer integration code]</codigoClienteExportador>
<nombreClienteExportador>[customer name]</nombreClienteExportador>
<codigoCultivo>[exporter integration code]</codigoCultivo>
<nombreCultivo>[exporter name]</nombreCultivo>
<packing>1</packing>
<box>
<codigoCliente>[final-customer integration code]</codigoCliente>
<nombreCliente>[final-customer name]</nombreCliente>
<codigoPieza>[barcode 1]</codigoPieza>
<codigoProducto>[product integration code]</codigoProducto>
<descripcionProducto>[product name]</descripcionProducto>
<empaque>QB</empaque>
<unidades>120</unidades>
<piezas>0</piezas>
<largo>38</largo>
<alto>4</alto>
<ancho>9</ancho>
<kilos>0</kilos>
<tallos_ramo>120</tallos_ramo>
<ramos_caja>1</ramos_caja>
<precio>0</precio>
<precio_ramo>0</precio_ramo>
<po>ORDER</po>
<caja_transportador>[trucking line integration code]</caja_transportador>
<caja_fecha_transportador>2024-09-09</caja_fecha_transportador>
</box>
<box>
<codigoCliente>[final-customer integration code]</codigoCliente>
<nombreCliente>[final-customer name]</nombreCliente>
<codigoPieza>[barcode 2]</codigoPieza>
<codigoProducto>[product integration code]</codigoProducto>
<descripcionProducto>[product name]</descripcionProducto>
<empaque>QB</empaque>
<unidades>120</unidades>
<piezas>0</piezas>
<largo>38</largo>
<alto>4</alto>
<ancho>9</ancho>
<kilos>0</kilos>
<tallos_ramo>120</tallos_ramo>
<ramos_caja>1</ramos_caja>
<precio>0</precio>
<precio_ramo>0</precio_ramo>
<po>ORDER</po>
<caja_transportador>[trucking line integration code]</caja_transportador>
<caja_fecha_transportador>2024-09-09</caja_fecha_transportador>
</box>
</House>
</masterAwb>
</root>