I have manage to get my site to work with paypal billing CreateRecurringPaymentsProfile however I am confused regarding the fields of
BILLINGPERIOD & BILLINGFREQUENCY
If I set first to Monthly and second to 12 hoping it would charge my customers each month I get this is email: "Billing cycle:Every 12 Months" Is this correct?
What if I want it to charge daily? I tried doing 'Day' and '365' and it said billing cycle 365 days which sounds to me like after every year.
I couldn't find anything clear in the documentation as well so kindly direct me. Thanks.
You're on the right track. From the PayPal docs:
In your stated example, setting
BILLINGPERIOD
toMonthly
andBILLINGFREQUENCY
to12
will schedule payments once every 12 months.To schedule payments once each month, you must set
BILLINGPERIOD
toMonthly
andBILLINGFREQUENCY
to1
.Similarly, to schedule payments daily, you must set
BILLINGPERIOD
toDay
andBILLINGFREQUENCY
to1
.