Skip to main content

Get Webshop Properties

GET /v2/product/property/webshop

Retrieves product properties formatted for webshop display with filtering capabilities. This endpoint returns properties with their values, organized for use in storefront filtering and product display. Results can be filtered by tenant, currency, category, and search terms to provide relevant property options.

Query Parameters

  • filter[tenant] - Parameter for filter[tenant]
  • filter[currency.code] - Parameter for filter[currency.code]
  • version - Parameter for version
  • ~limit - Parameter for ~limit
  • ~offset - Parameter for ~offset
  • ~filter[categoryIds] - Parameter for ~filter[categoryIds]
  • ~filter[tenant] - Parameter for ~filter[tenant]
  • ~search - Parameter for ~search

Request Example

GET /v2/product/property/webshop?filter[tenant]=627e1584da9e666dcd6c00c0&filter[currency.code]=NOK&version=v2

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
}
]