PayPal CreateRecurringPaymentsProfile 账单频率
我已经设法让我的网站与 paypal billing CreateRecurringPaymentsProfile 一起使用,但是我对
BILLINGPERIOD 和 BILLINGPERIOD 字段感到困惑。 BILLINGFREQUENCY
如果我将第一个设置为每月,第二个设置为 12,希望它每月向我的客户收费,我会收到以下电子邮件: “计费周期:每12个月” 这是正确的吗?
如果我想让它每天充电怎么办?我尝试做“Day”和“365”,它说计费周期为 365 天,这对我来说听起来像是每年之后。
我在文档中也找不到任何明确的内容,所以请指导我。谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你走在正确的轨道上。来自 PayPal 文档:
在您所说的示例中,将
BILLINGPERIOD
设置为每月
并将BILLINGFREQUENCY
设置为12
将安排每 12 点付款一次月。要安排付款每月一次,您必须将
BILLINGPERIOD
设置为每月
,将BILLINGFREQUENCY
设置为1
代码>.同样,要安排每日付款,您必须将
BILLINGPERIOD
设置为Day
,将BILLINGFREQUENCY
设置为1
代码>.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
.