Skip to main content
GET
/
api
/
external
/
v2
/
subscription-bundlings
/
external
/
get-bundle
/
{handle}
Get bundle details by handle
curl --request GET \
  --url https://subscription-admin.appstle.com/api/external/v2/subscription-bundlings/external/get-bundle/{handle}
{
  "bundle": {
    "id": 12345,
    "name": "Premium Coffee Bundle",
    "handle": "premium-coffee-bundle",
    "description": "Choose your favorite coffee blends",
    "minProducts": 2,
    "maxProducts": 5,
    "totalPrice": "49.99",
    "currencyCode": "USD"
  },
  "subscriptions": [
    {
      "frequency": "MONTH",
      "frequencyCount": 1,
      "frequencyName": "Monthly Delivery",
      "discount": 10,
      "discountType": "PERCENTAGE"
    },
    {
      "frequency": "WEEK",
      "frequencyCount": 2,
      "frequencyName": "Bi-Weekly Delivery",
      "discount": 15,
      "discountType": "PERCENTAGE"
    }
  ],
  "products": [
    {
      "variantId": 11111,
      "productId": 99999,
      "title": "Medium Roast Coffee",
      "price": "14.99",
      "image": "https://cdn.shopify.com/image.jpg",
      "available": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.appstle.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

X-API-Key
string

Path Parameters

handle
string
required

Customer Handle

Query Parameters

api_key
string

API Key (Deprecated - Use Header X-API-Key instead)

Response

Bundle details successfully retrieved