curl --request GET \
--url https://api.shoppex.io/dev/v1/groups/{uniqid} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"uniqid": "<string>",
"shop_id": "<string>",
"title": "<string>",
"slug": "<string>",
"description": "<string>",
"image_url": "<string>",
"position": 123,
"product_count": 123,
"products_bound": [
"<string>"
],
"created_at": 123,
"updated_at": 123,
"products": [
{
"id": "<string>",
"uniqid": "<string>",
"title": "<string>",
"price": 123,
"price_display": 123,
"currency": "<string>"
}
]
}
}Returns a single group by uniqid with products
curl --request GET \
--url https://api.shoppex.io/dev/v1/groups/{uniqid} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "<string>",
"uniqid": "<string>",
"shop_id": "<string>",
"title": "<string>",
"slug": "<string>",
"description": "<string>",
"image_url": "<string>",
"position": 123,
"product_count": 123,
"products_bound": [
"<string>"
],
"created_at": 123,
"updated_at": 123,
"products": [
{
"id": "<string>",
"uniqid": "<string>",
"title": "<string>",
"price": 123,
"price_display": 123,
"currency": "<string>"
}
]
}
}