curl --request POST \
--url https://api.bspk.com/api/platform/v1/products/inventories/batches \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"inventories": [
{
"product_ref": "prd-123",
"sku": "sku-123",
"quantity": 10,
"store_ref": "str1",
"at": "2021-01-01T00:00:00Z"
}
]
}
'