curl \
--request PATCH 'http://test.api.fygi.store/external/api/products' \
--header "authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '[
{
"id": "string",
"storeId": {
"value": "string"
},
"name": {
"value": "string"
},
"description": {
"value": "string"
},
"handle": {
"value": "string"
},
"vendor": {
"value": "string"
},
"active": {
"value": true
},
"isNotDiscountable": {
"value": true
},
"ageGroupId": {
"value": "string"
},
"relatedProductIds": {
"value": [
"string"
]
},
"imageUrls": {
"value": [
"string"
]
},
"categoryIds": {
"value": [
"string"
]
},
"dimensions": {
"value": [
{
"id": "string",
"name": "string",
"articleNumber": "string",
"barcode": "string",
"sortIndex": 42,
"requiredDimensionId": "string",
"productOption1Value": "string",
"productOption2Value": "string",
"productOption3Value": "string",
"prices": [
{
"currencyCode": "string",
"amount": 42,
"taxPercent": 42,
"adjustmentType": "string",
"validFrom": "2026-05-04T09:42:00Z"
}
],
"availability": {
"count": 42
}
}
]
},
"options": {
"value": [
{
"name": "string",
"sortIndex": 42,
"values": [
"string"
]
}
]
}
}
]'
curl \
--request PATCH 'http://test.api.fygi.store/external/api/products' \
--header "authorization: $API_KEY" \
--header "Content-Type: text/json"
curl \
--request PATCH 'http://test.api.fygi.store/external/api/products' \
--header "authorization: $API_KEY" \
--header "Content-Type: application/*+json"