GET https://api.subscriptiongenius.com/2/bundles/
Request Parameters
Paramater Description Required Default Data Type
active Filter on active and inactive status No true Bool
max_price Search by maximum price No Double
min_price Search by minimum price No Double
name Search by name of bundle No String
price Match exact price No Double
promotional Filter by type of bundle No Bool
promo_code Find bundles on promotion code No String
Response Parameters
Paramater Description Data Type
country_prices List of country prices that override default price Array
active Bundle is currently available for sale Bool
bundle_id Unique reference id to bundle Integer
description Description of bundle contents Text
international_price String
name Name of the bundle String (100)
price Default bundle price Double
promo_code Promotion code for special pricing bundles String (25)
publication_id Unique reference id to publication Integer
subscriptions Array of subscriptions Array
subscriptions.issues String
subscriptions.publication_id String
type Type of bundle "Print", "Digital", "Both"
Example Request
{
  "active":true,
  "promotional":true,
  "min_price":0,
  "max_price":35
}
Example Response
[
  {
    "bundle_id":"333",
    "name":"Free Issue of Omaha Magazine for being a Fan on Facebook!",
    "price":"0.00",
    "international_price":"0.00",
    "active":true,
    "promo_code":"Fbook",
    "description":"Free Issue of Omaha Magazine for being our Fan on Facebook! ",
    "type":"both",
    "subscriptions":[
      {
        "publication_id":"45",
        "issues":"1"
      }
    ],
    "country_prices":null
  },
  {
    "bundle_id":"335",
    "name":"Omaha Magazine - One Year Free",
    "price":"0.00",
    "international_price":"0.00",
    "active":true,
    "promo_code":"FreeYear",
    "description":"New subscription or subscription extension to Omaha Magazine for one year (six issues.)",
    "type":"print",
    "subscriptions":[
      
    ],
    "country_prices":null
  },
  {
    "bundle_id":"505",
    "name":"Early Bird",
    "price":"5.00",
    "international_price":"5.00",
    "active":true,
    "promo_code":"early",
    "description":"Early Bird special description.",
    "type":"print",
    "subscriptions":[
      {
        "publication_id":"45",
        "issues":"6"
      }
    ],
    "country_prices":null
  }
]