Bulk create order history items
POST
/OrderHistory
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/OrderHistory' \
--header 'Content-Type: application/json' \
--data-raw '{
"history": [
{
"customerid": "CUSTOMER1",
"productid": "FORAPI",
"orderUnit": "CS",
"orderTypeDescription": "Single Bucket History",
"bucket": "SINGLE BUCKET",
"mainNumber": 85
}
]
}'
Response Response Example
{
"successful": 998,
"failed": [
{
"ID": "MAR",
"Message": "A maximum of 1000 history lines is allowed per session"
},
{
"ID": "APR",
"Message": "Customer Id not found"
}
]
}
Request
Body Params application/json
Responses
Modified at 2025-06-13 14:13:21