POST https://api.subscriptiongenius.com/2/subscriptions/
Request Parameters
Paramater Description Required Default Data Type
issues Issues to be received to subscriber. -1 = Unlimited Yes
mailing_address_id {address_id} of address subscription will be mailed to Yes Integer
publication_id Unique id of publication Yes Integer
subscriber_id {subscriber_id} of subscriber the subscription belongs to Yes Integer
billing_address_id {address_id} of address renewals and billing will go to No {mailing_address_id} Integer
copies Number of copies received per issue. > 0 No 1 Integer
renew_campaign_active Detemines if subscriber will receive renewal notices No True Bool
type Subscription Type: Print, Digital, Both No PRINT
Response Parameters
Paramater Description Data Type
subscription_id Unique reference id to subscription Integer
Example Request
{
  "publication_id":9,
  "mailing_address_id":"10",
  "issues":10,
  "type":"PRINT",
  "copies":1,
  "subscriber_id":10
}
Example Response
{
  "subscription_id":228971
}