Search 800 + Posts

Dec 4, 2025

Sample REST api call to run Manual Wave in Oracle WMS Cloud

The Run Manual API allows you to invoke a manual wave. We have use case where customer would like to create and process Sales Order and Order Management cloud and then would like to trigger Manual Wave in WMS. Once Order is ready for they are invoking OIC flow , and that in turn call WMS rest API
/wms/lgfapi/v10/entity/wave_template/run_manual

Sample Payload to create Manual Wave
https://<wms instance url>/wms/lgfapi/v10/entity/wave_template/run_manual/
Operation : POST
{
  "parameters": {
  "facility_id": 1,
  "template_name": "Order Based Replen" //"Mixed Order Picking"
  },
  "options": {
  "order_dtl_id_list": [5426]
  }
}

In option section of API , you can provide Order information either by providing one or list of
Order_detail_ID ( as shown in above example) , or provide a or list of list of
order number / sequence number pairs


No comments:

Post a Comment