Search 800 + Posts

Dec 4, 2025

Sample REST api call to Close LPN in Oracle WMS Cloud

WMS REST API - /pick_pack/close_lpn 

This API is used to close an LPN (License Plate Number) after the picking and packing process is complete in Oracle WMS Cloud.

Majority of time LPN is normally triggered by warehouse RF operations, but many organizations automate it using WMS REST API + OIC.

Below is Use case why there is need to Manually Close LPN

  • You have an outbound wave generating pick tasks.
  • Items are picked and placed into OBLPNs (cartons).
  • Instead of RF scanning to close each carton, the business wants:
    • A carton to auto-close when all expected quantities are picked.
    • A batch job (via OIC) to auto-close all LPNs in PACKING status.
  • Automation Benefit
    • Removes manual RF step → speeds throughput → reduces labor cost.
In such Scenario , A schedule OIC job trigger and call WMA REST API to close LPNs, below is Sample REST api call to close LPN

END POINT : https://<wms instance url>/pick_pack/close_lpn 
Operation : POST
{ "facility_id":1, "company_id":1, "to_container_nbr":"BIZ0000003881", "close_container_status":"picked", "short_on_close_flg": true, "async_flg": true }

No comments:

Post a Comment