Appearance
GET
/product-category-property/product-categories/{categoryId}/propertiesRequired scope:
viskan:productcategory:readReturns all properties assigned to a product category.
Parameters
Path parameters
categoryId integerThe unique identifier of the product category.
Response
The response contains the product category 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": [
{...}
]
}
]
}
]