curl --location --request POST '/api/rest/v1/families//variants' \
--header 'Content-Type: application/json' \
--data-raw '{
"code": "shoesVariant",
"labels": {
"en_US": "Shoes variant",
"fr_FR": "Variante de chaussures"
},
"variant_attribute_sets": [
{
"attributes": [
"color",
"material"
],
"axes": [
"color"
],
"level": 1
},
{
"attributes": [
"sku",
"size"
],
"axes": [
"size"
],
"level": 2
}
]
}'
{}