logoSellhub
Groups
background
Sellhub Docs
Sellhub Docs
Product Groups
GET
/products/groups

Authorization

Authorization<token>

In: header

Query Parameters

idstring

Generic ID filter (e.g., product, bundle, coupon, etc.)

namestring

Product Group Name

shortDescriptionstring

Short Description of Product Group

cheapestSubscriptionnumber

Cheapest subscription price

Format: "float"
curl -X GET "https://dash.sellhub.cx/api/sellhub/products/groups?id=%3Cstring%3E&name=%3Cstring%3E&shortDescription=%3Cstring%3E&cheapestSubscription=0.1" \
  -H "Authorization: <token>"

A list of product groups

{
  "data": {
    "productGroups": [
      {
        "id": "group_123",
        "name": "Summer Collection",
        "shortDescription": "Perfect summer essentials",
        "images": [
          "https://example.com/summer-collection.jpg"
        ],
        "isFeatured": true,
        "cheapestSubscription": 9.99,
        "createdAt": "2023-05-01T10:00:00Z"
      }
    ]
  }
}