curl --location --request PUT '/ProductInventory' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"productID": "string",
"inventory": 0
}
]'
{
"successful": [
"string"
],
"failed": [
{
"productID": "string",
"message": "string"
}
]
}