Appearance
GET
/product-property/products/{productId}/propertiesRequired scope:
viskan:product:readReturns all properties assigned to a product.
Parameters
Path parameters
productId integerThe unique identifier of the product.
Response
The response contains the product properties.
JSON
[
{
"propertyKeyId": 1,
"propertyKeyName": "Color",
"presentation": "SINGLE_SELECT",
"propertyValue": {
"propertyValueId": 1,
"value": "Red",
"mediaURL": "...",
"translations": [
{
"languageCode": "sv",
"name": "Röd",
"description": "..."
}
]
},
"propertyValues": [
{
"propertyValueId": 1,
"value": "Red",
"mediaURL": "...",
"translations": [
{...}
]
}
]
}
]