Get Webshop Product By Id
GET /v2/product/webshop/:group_id
Retrieves detailed information for a single webshop product by its unique identifier. The response includes basic product details such as name, SKU, pricing, categories, properties, and associated media.
Response Example
{
"_id": "27810092-d65a-4560-9925-2fb996d1da60",
"name": "Example Laptop X13",
"properties": {
"property-id-1": {
"name": "Memory",
"tenant": "tenant-id-1",
"value": "8GB RAM"
},
"property-id-2": {
"name": "Storage",
"tenant": "tenant-id-1",
"value": "256GB SSD"
},
"property-id-3": {
"name": "Size",
"tenant": "tenant-id-1",
"value": "13.3-inch"
}
},
"categories": [
{
"_id": "category-id-1",
"name": "Laptops",
"tenant": "tenant-id-1",
"orderIndex": 0,
"created": "2025-06-19T23:17:20.578Z",
"updated": "2025-06-19T23:17:20.578Z",
"__v": 0
}
],
"prices": [
{
"_id": "price-id-1",
"sku": "EX1000",
"price": 349.99,
"min": 0,
"default": 1
}
],
"sku": "EX1000",
"tenant": "tenant-id-1",
"description": "A high-performance laptop suitable for professionals and students.",
"media": [
"https://example.com/images/example-laptop.jpg"
],
"customInputs": [],
"stock": 0
}