curl --location --request POST '/products/create' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Coca-Cola Soft Drink",
"unit": "Carton",
"pieces": 12,
"variant": "multiple",
"created_at": "2024-06-01T00:00:00.000Z",
"variant_types": [
{
"variant_name": "Coca-Cola 50cl PET",
"cost_price": 1200,
"selling_price": 1500,
"quantity": 100,
"unit": "Carton",
"pieces": 12,
"color": "Red",
"size": "50cl",
"product_image": "https://example.com/coke-50cl.jpg",
"created_at": "2024-06-01T00:00:00.000Z",
"barcode": "8999990001",
"expiry_date": "2025-05-31T07:23:25.619Z",
"low_stock_limit": 15,
"expiry_reminder": "1_month_before"
},
{
"variant_name": "Coca-Cola 35cl Can",
"cost_price": 1000,
"selling_price": 1300,
"quantity": 80,
"unit": "Carton",
"pieces": 24,
"color": "Red",
"size": "35cl",
"product_image": "https://example.com/coke-35cl.jpg",
"created_at": "2024-06-01T00:00:00.000Z",
"barcode": "8999990002",
"expiry_date": "2025-06-30T07:23:25.619Z",
"low_stock_limit": 20,
"expiry_reminder": "1_week_before"
}
],
"barcode": "COCA-COLA-001",
"expiry_date": "2025-06-30T07:23:25.619Z",
"low_stock_limit": 5,
"expiry_reminder": "1_month_before"
}'