Depalletize Inbound / Outbound LPN

Allows you to depalletize an Inbound or Outbound LPN so you do not have to use RF guns for performing depalletization in automated guided facilities.

Identify container by ID:

POST .../entity/container/{id}/depalletize/
  • The specific inbound or outbound LPN's id value is known and is provided in the URL.
  • No additional `parameters` data in the request body is required.

Identify container by Filters

POST .../entity/container/depalletize/
  • lgfapi provides mechanism to determine the container entity to be dissociated with pallet.
  • The `parameters` section of the request body will allow for the users to identify the specific OBLPN
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”.

{

"parameters": {

"facility_id": 1,

"company_id": 1,

        "container_nbr":
        "LPN001",

"type": "O"

}

}

  • Both `facility_id` and `company_id` also support filtering on `code` as well.

Category Name Required Type Description
parameters facility_id_code string Container’s facility
Parameters company_id_code string Container’s company

{

"parameters": {

        "facility_id__code":
        "FAC-1",
        "company_id__code":
        "COM-1",
        "container_nbr":
        "LPN001",

"type": "O"

}

}