Use REST API When You Can't Use Extensions
Use REST API when an Order Management extension doesn't meet your needs.
For example, you can't use an Order Management extension to update the Scheduled Ship Date attribute when you revise a sales order.
Assume you must set the value of the Scheduled Ship Date attribute to the value that the Requested Date attribute contains when you create an order revision.
Use a patch action on the salesOrdersForOrderHub REST API. For example:
{
"lines":[
{
"SourceTransactionLineId": "1",
"SourceTransactionScheduleId": "1",
"OverrideScheduleDateFlag": true,
"ScheduleShipDate": "2019-10-25T05:59:59+00:00",
"ShippingInstructions":"REST NEW TEST",
"RequestedFulfillmentOrganizationCode": "M1"
}
]
}
For more, go to REST API for Oracle Supply Chain Management Cloud, expand Order Management, then click Sales Orders for Order Hub > Update One Sales Order.