Sirs:
I need just a little bit of help with recurring billing.
I'm trying to set up a subscription that bills yearly, and that has a one month trial period. My code looks like this:
' free 1 month trial
subscr.paymentSchedule.trialOccurrences = 1
subscr.paymentSchedule.trialOccurrencesSpecified =True
subscr.trialAmount = 0
subscr.trialAmountSpecified =True
subscr.amount = 71.88
subscr.amountSpecified =True
subscr.paymentSchedule.interval =NewpaymentScheduleTypeInterval
subscr.paymentSchedule.interval.length = 12
subscr.paymentSchedule.interval.unit =ARBSubscriptionUnitEnum.months
As far as I can tell, this is working. But... When I log on to my account, I can see the subscription but no description of how long the trial period is for or any billing periodicity.
How can I tell in the interface if I've done it right?
02-07-2013 05:07 PM
Check to see if the subscriptionID is that right one. Did see you set the totalOccurrences or startDate
02-08-2013 04:52 AM