Pallet
In order to provide the key to identify the Pallet and update the Weight and Volume fields. a PATCH verb for the Pallet entity is available.
PATCH .../wms/lgfapi/entity/pallet/id/where id = id of the pallet, which can be obtained using GET method
The following is a JSON sample of the request body:
{
"fields":
{ 
 "lpn_type_id": "123",
 "length": "45", 
 "width": "50.8", 
 "height": "70", 
 "actual_weight": "180" 
}
}
You can update the following fields using the patch method:
| Field | Type | 
|---|---|
| lpn_type_id | String | 
| length | String | 
| width | String | 
| height | String | 
| actual_weight | String |