curl --request POST \
--url https://api.wizcommerce.com/v1/products \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data @- <<EOF
{
"group_code": "PRD1",
"variants": [
{
"sku_id": "66112458-fda7-4a96-8121-9c1d57a8651d",
"reference_id": "PRD1",
"name": "8'X10'",
"product_prices": [
{
"price_list_id": "PRC123",
"price": 100,
"min_order_quantity": 1,
"max_order_quantity": 100,
"step_increment": 1
}
],
"categories": [
"<string>"
],
"collections": [
"<string>"
],
"medias": [
{
"url": "https://example.com/image1.jpg",
"order": 1,
"type": "image",
"is_default": true
}
],
"attributes": [
{
"name": "1234567890",
"value": "red"
}
],
"is_primary": true,
"priority": 123
}
],
"grouping_attributes": [
"<string>"
]
}
EOF