2.6 Update Shipment Weight

User can update shipment weight by provide single or multiple HawbNo and the total weight.

Parameters

No. Parameter Data Type Length Mandatory Description
1 ShipmentsCredentials ShipmentsCredentials Yes Refer to section 1.2
2 HawbNo String 50 Yes HawbNo. to update weight
3 Weight Numeric 7,2 Yes Total weight in 2 decimal point

Example:

1 2 3 4 5 6 7 8 9
ShipmentWeightListRequest _par = new ShipmentWeightListRequest();
_par.ShipmentsCredentials = credential;

ShipmentWeight weight1 = new ShipmentWeight();
weight1.HawbNo = "344010500000151";
weight1.Weight = 52.50;

_par.ShipmentWeightList = new ShipmentWeight[1];
_par.ShipmentWeightList[0] = weight1;
Copyright © 2018 Unixus Solutions Sdn. Bhd. All rights reserved.