curl --request POST \
--url https://api.example.com/v1/product_store/bulk \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"store_name": "<string>",
"country_code": "<string>",
"regular_price": 123,
"unit_cost": 123,
"stock_on_hand": 123,
"status": "<string>",
"tax_rate": 123,
"currency": "<string>",
"price_effective_date": "2023-12-25",
"item_id": "<string>",
"sku": "<string>",
"store_id": "<string>",
"current_price": 123
}
]
}
'