logoSellhub
Bundles
background
Sellhub Docs
Sellhub Docs
Product Bundles
GET
/products/bundles

Authorization

Authorization<token>

In: header

Query Parameters

idstring

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

namestring

Bundle Name

createdAtFromstring

Earliest creation date (ISO 8601 datetime)

Format: "date-time"
createdAtTostring

Latest creation date (ISO 8601 datetime)

Format: "date-time"
curl -X GET "https://dash.sellhub.cx/api/sellhub/products/bundles?id=%3Cstring%3E&name=%3Cstring%3E&createdAtFrom=2019-08-24T14%3A15%3A22Z&createdAtTo=2019-08-24T14%3A15%3A22Z" \
  -H "Authorization: <token>"

A list of product bundles

{
  "data": {
    "bundles": [
      {
        "id": "bundle_123",
        "name": "Summer Collection",
        "discountPercentage": "15.00",
        "variants": [
          {
            "id": "variant_456",
            "name": "Blue T-Shirt"
          }
        ],
        "createdAt": "2023-05-01T10:00:00Z"
      }
    ]
  }
}