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