Get Grouped Properties List
GET /v2/product/property/grouped
Retrieves product properties organized into groups based on their names. This endpoint aggregates properties with the same name and groups their values together, making it easier to display property options in a structured format. Optional extended parameters allow including product counts and product lists for each property value.
Query Parameters
~extended[]- Parameter for ~extended[]
Request Example
GET /v2/product/property/grouped
Response Example
{
"Memory": [
{
"_id": "prop-id-1",
"name": "Memory",
"value": "8GB RAM",
"orderIndex": 0
},
{
"_id": "prop-id-2",
"name": "Memory",
"value": "16GB RAM",
"orderIndex": 1
}
],
"Storage": [
{
"_id": "prop-id-3",
"name": "Storage",
"value": "256GB SSD",
"orderIndex": 0
}
]
}