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]filter[currency.code]- Parameter for filter[currency.code]version- Parameter for version~offset- Parameter for ~offset~limit- Parameter for ~limit~filter[categoryIds]- Parameter for ~filter[categoryIds]~filter[propertyIds]- Parameter for ~filter[propertyIds]~search- Parameter for ~search
Request Example
GET /v2/product/webshop?filter[tenant]=&filter[currency.code]=NOK&version=v2
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"
}
]