How can I put shipment lines to backorder in bulk?
Hi,
We are implementing integration between WMS and Oracle Fusion, we want to send some shipment lines to backorder, but using the standard API we are obtaining the following error message:
/fscmRestApi/resources/11.13.18.05/shipmentLineChangeRequests/action/backorderAll
400 Bad Request: “The action backorderAll in resource shipmentLineChangeRequests is not found.”
Used payload:
{
"name": "backorderAll",
"parameters": {
"details": [
{
"ShipmentLine": 357004,
"BackorderedQuantity": 5
},
{
"ShipmentLine": 255004,
"BackorderedQuantity": 3
}
]
}
}
We have followed the official documentation but is not possible to obtain successfully response.
https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=297900274215770&id=2615066.1
Can you help us to identify the correct payload to consume that API or confirm if is not possible to backorder lines in bulk? If We use the resource for only one line, its works successfully.