Get values 📋
Returns the values of all the products of the perimeter for a given property.
Path parameters
-
The property key for which to get the values, as returned by segment datamodel endpoint. If it depends of a segment, it must be prefixed by the segment slug separated by '--'
GET /products/values/{property_key}
curl \
-X GET https://api.ppe-analytics.com/api/v1/products/values/hand-protection--color \
-H "PPEApiKey: $API_KEY"
Response examples (200)
{
"status": "OK",
"result": {
"values": [
{
"value": [
"one",
"two"
],
"product_id": "f50938a24830edb8b1c2ecc3f7dd88a3",
"product_segment_key": "surface-cleaning"
},
{
"value": [
"three"
],
"product_id": "89e6848c8f1f91404c224393340b1fad",
"product_segment_key": "surface-cleaning"
},
{
"value": [
"one"
],
"product_id": "79e6848c8f1f91404c224393340b1fad",
"product_segment_key": "surface-cleaning"
}
]
}
}