Skip to main content

Get Webshop Products

GET /v2/product/webshop

Retrieves a list of products formatted specifically for webshop display. This endpoint returns products with their current status, pricing, media, and other attributes optimized for storefront applications. Results can be filtered by tenant, category, properties, and search terms to narrow down the collection.

Query Parameters

  • filter[tenant] - Parameter for filter[tenant]
  • ~offset - Parameter for ~offset
  • ~limit - Parameter for ~limit
  • ~filter[tenant] - Parameter for ~filter[tenant]
  • ~filter[categoryIds] - Parameter for ~filter[categoryIds]
  • ~filter[propertyIds] - Parameter for ~filter[propertyIds]
  • ~search - Parameter for ~search

Request Example

GET /v2/product/webshop?filter[tenant]=666c46d5f20deed5fa2d07c9

Response Example

[
{
"id": "product-id-1",
"group_id": "product-group-id-1",
"name": "Example Product",
"status": {
"active": true,
"deleted": false
},
"price": 100,
"media": ["https://example.com/image.jpg"],
"shop_enabled": true,
"created": "2025-01-01T00:00:00.000Z",
"updated": "2025-01-01T00:00:00.000Z"
}
]