curl --location --request POST 'https://dev-api.idukki.io/products' \
--header 'x-api-key: a1b0ba05-cc28-23bf-e840-bb18d443345c' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"id_from_product": "",
"title": "Sample Product 101",
"vendor": "Vendor B",
"product_type": "",
"description": "Description for product 101",
"product_url": "",
"source_of_import": "csv",
"rating": "tag101",
"status": "active",
"variants": [
{
"title": "Default",
"price": 60.5,
"salePrice": 48.4,
"sku": "SKU_101",
"taxable": true,
"inventory_quantity": 1
}
],
"sku": "SKU_101",
"upc": "",
"mpn": "",
"isbn": "",
"image": [
{
"src": "https://example.com/image_101.jpg",
"business_id": 0
}
]
}
]'