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