Palletize Container

POST .../entity/container/{id}/palletize/

Allows you to palletize an Inbound or Outbound LPN.

The “parameters” section of the request body is required in addition to the “options” section outlined below.

Category Name Required Type Description
parameters container_nbr X String

IB or OB LPN to be linked.

“_in” lookup is not supported.

parameters facility_id Integer Container’s facility
parameters company_id Integer Container’s company
parameters type String Container’s type “I” or “O”.

Example

{
"parameters": {
"facility_id": 1,
"company_id": 1,
"container_nbr": "LPN-1"
}
}
  • Both `facility_id` and `company_id` also support filtering on `code` as well.
Category Name Required Type Description
parameters facility_id string Container’s facility
parameters company_id string Container’s company
{
"parameters": {
"facility_id__code": "FAC-1",
"company_id_code": "COM-1",
"container_nbr": "OBLPN-1"
}
}

Functional Request Data

Category Name Required Type Default Description
options pallet_nbr X string Pallet number to be used for palletizing IB or OBLPN's.
options pallet_position string Position of Inbound or OBLPN during palletization.
options allow_mix_pa_types_flg boolean False whether to allow mixing of LPN's with different PA types on a single pallet.
options allow_mix_dest_shipto string

valid values to be passed are

  • Validate Ship To
  • Validate Destination
  • Validate Ship To and Destination
  • Ignore Ship To and Destination
{
"options": {
"pallet_nbr": "PLT001",
"pallet_position": "01",
"allow_mix_pa_types_flg": false
"allow_mix_dest_shipto": Ignore Ship To and Destination
}
}