Bulk Unload OBLPN

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

API URL

POST .../entity/oblpn/bulk_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__in Mandatory String List of container numbers
pallet_nbr__in Mandatory String Pallet number to be used for unloading OBLPNs
location_barcode Mandatory String Location barcode where the OBLPNs to be unloaded
commit_frequency Not mandatory Integer

0=Roll back on first

error. 1=Commit per

OBLPN unloaded

Note: You can send either container_nbr__in or pallet_nbr__in 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",
        "pallet_nbr__in": [“PLT1”, “PLT2”, “PLT3”]
    },
    "options": {
        "location_barcode": "Area12",
        "commit_frequency": "1"
    }
}