Pallet Direct Allocation

This API is used to directly create an Outbound pallet from an Inbound pallet and perform packing.

You can directly allocate an IB Pallet to be packed into an OB Pallet, against a sales order.

URL

POST .../wms/lgfapi/v10/entity/pallet/direct_allocation/

Request Parameters

Parameter/Field Name Type Required Description
facility_id Integer Yes

Facility context by id.

Either facility_id or facility_id__code is mandatory to send.

facility_id__code String Yes

Facility context by code.

Either facility_id or facility_id__code is mandatory to send.

company_id Integer Yes

Company context by id.

Either company_id or company_id__code is mandatory to send.

company_id__code String Yes

Company context by code.

Either company_id or company_id__code is mandatory to send.

pallet_nbr String Yes IB pallet number to be directly allocated against the sales order.
order_nbr String Yes Sales order number to be allocated and packed.
reuse_lpn Boolean No

Default- If set to “True”, the API reuses the IBLPN number to be the OBLPN number. (one to one)

If set to “False”, OBLPN numbers are generated through the sequence counter set for OB Container. (If sequence counter is not set, the system displays an error)

auto_load Boolean No Default- If set to “True”, the API loads entire pallet without depalletizing the LPNs.
location_barcode String Conditional A drop location is a mandatory to send, when auto_load is false.

Request Body

{
    "parameters":{
        "facility_id": "64898",
        "company_id": "36978",
        "pallet_nbr": "PLT06102501",
        "order_nbr": "ORD06102502"
        },
    "options": {
        "reuse_lpn": "False",
        "auto_load": "False"
        "location_barcode": “Drop1"
    }
}

Sample Response

204 No Content