Unload OBLPN

The Unload OBLPN REST API allows you to unload an OBLPN. This enhancement work as a mirror to the functionality of RF Unload OBLPN.

API URL

POST .../entity/oblpn/unload

Request Parameters

Name Required Type Description
facility_id Not mandatory String Facility context by id
company_id Not mandatory String Company context by id
facility_id__code Not mandatory String Facility context by code
company_id__code Not mandatory String Company context by code
container_nbr Mandatory String OBLPN’s container number
pallet_nbr Mandatory String Pallet number to be used for unloading OBLPNs
location_barcode Mandatory String Location barcode where the OBLPNs to be unloaded
Note: You can send either container_nbr or pallet_nbr at a time in a single POST request.

Request Body Example

{
    "parameters": {
        "facility_id__code": "123RF",
        "facility_id": "123",
        "company_id__code": "456AR",
        "company_id": "456",
        "container_nbr": "Container1"
    },
    "options": {
        "location_barcode": "Area12"
    }
}