Retrieves complete details for a subscription bundle using its unique handle. This endpoint returns the bundle configuration, included products, pricing, and available subscription options.
Bundle Information Returned:
Use Cases:
Bundle Handle: The handle is a unique, URL-friendly identifier for the bundle. It’s typically generated when the bundle is created and remains constant throughout the bundle’s lifecycle.
Authentication: Requires valid X-API-Key header
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.
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
}
]
}