Bulk update orders
PUT
/Order
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/Order' \
--header 'Content-Type: application/json' \
--data-raw '{
"items": [
{
"id": "11",
"deliveryDate": "2024-07-22T00:00:00",
"orderQty": 2,
"notes": "Some notes",
"purchaseOrderId": "PO12345"
}
]
}'
Response Response Example
{
"successful": [
"11"
],
"failed": [
{
"id": "113501",
"customerID": "CUST4051",
"productID": "PROD6720",
"rownumber": 1,
"orderUnit": "EA",
"orderQty": 2,
"deliveryDate": "2025-05-21",
"purchaseOrder": "PO12345",
"errorDesc": "Customer ID not found"
},
{
"id": "113508",
"customerID": "CUST2653",
"productID": "PROD3364",
"rownumber": 2,
"orderUnit": "CS",
"orderQty": 2,
"deliveryDate": "2025-03-16",
"purchaseOrder": "PO12345",
"errorDesc": "Product not available for customer"
}
]
}
Request
Body Params application/json
Responses
Modified at 2025-06-13 14:08:49