Update a retailer product attribute value
This endpoint allows you to update an attribute value for a retailer product.
Path parameters
-
code
string Required Code of the resource
-
attribute_code
string Required Code of the attribute
Body
Required
-
identifier
string Required Child product identifier, i.e. child sku. A unique value to reference a single product.
-
values
object Product attributes values, i.e., 'price', 'quantity', 'special_price', 'special_price_from_date', 'special_price_to_date'
Additional properties are allowed.
PATCH
/api/rest/v1/retailer/products/{code}/attribute/{attribute_code}
curl \
--request PATCH 'https://content.winkelstraat.nl/api/rest/v1/retailer/products/{code}/attribute/{attribute_code}' \
--data '{"values":{"quantity":[{"data":15}]},"identifier":"top_child_size_m"}'
Request examples
{
"values": {
"quantity": [
{
"data": 15
}
]
},
"identifier": "top_child_size_m"
}
Response examples (422)
Code
422
Property "labels" expects an array as data, "NULL" given. Check the API reference documentation.
{
"documentation": {
"href": "http://api.akeneo.com/api-reference.html"
}
}
Response examples (422)
{
"code": 42,
"message": "string"
}