Skip to main content

Get Webshop Properties List

GET /v2/product/property/webshop

Retrieves a list of product properties formatted specifically for webshop display. This endpoint returns properties with their values, organized for filtering and display in storefront applications. Results can be filtered by tenant and category to narrow down the collection.

Query Parameters

  • filter[tenant] - Parameter for filter[tenant]
  • ~filter[categoryIds] - Parameter for ~filter[categoryIds]

Request Example

GET /v2/product/property/webshop?filter[tenant]=685498954146b339e63e71b1

Response Example

[
{
"_id": "property-id-1",
"name": "Memory",
"tenant": "tenant-id-1",
"value": "8GB RAM",
"orderIndex": 0
},
{
"_id": "property-id-2",
"name": "Storage",
"tenant": "tenant-id-1",
"value": "256GB SSD",
"orderIndex": 1
}
]