curl --request POST \
--url https://clientapi.retailgrid.io/v1/product_variants/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"variant_name": "<string>",
"size": "<string>",
"color": "<string>",
"uom": "<string>",
"barcode": "<string>",
"is_active": true,
"stock": 123,
"price": 123,
"regular_price": 123,
"rrp": 123,
"unit_cost": 123,
"currency": "<string>",
"price_effective_date": "2023-12-25",
"cost_effective_date": "2023-12-25",
"product_id": "<string>",
"sku": "<string>"
}
]
}
'