PayPal CreateRecurringPaymentsProfile 账单频率

发布于 2025-01-05 16:24:01 字数 318 浏览 0 评论 0原文

我已经设法让我的网站与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾挽 2025-01-12 16:24:01

你走在正确的轨道上。来自 PayPal 文档

每个计费周期支付一次付款。每个计费周期有2
组件:

  • 结算周期指定计算结算周期的单位(例如天或月)。
  • 计费频率指定构成计费周期的计费周期数。

例如,如果计费周期为“月”且计费频率为
为2时,计费周期为2个月。如果计费周期为周并且
计费频率为 6,PayPal 每 6 安排一次付款
几周。

在您所说的示例中,将 BILLINGPERIOD 设置为 每月 并将 BILLINGFREQUENCY 设置为 12 将安排每 12 点付款一次月。

要安排付款每月一次,您必须将 BILLINGPERIOD 设置为 每月,将 BILLINGFREQUENCY 设置为 1代码>.

同样,要安排每日付款,您必须将 BILLINGPERIOD 设置为 Day,将 BILLINGFREQUENCY 设置为 1代码>.

You're on the right track. From the PayPal docs:

Make one payment per billing cycle. Each billing cycle has 2
components:

  • The billing period specifies the unit to calculate the billing cycle (such as days or months).
  • The billing frequency specifies the number of billing periods that make up the billing cycle.

For example, if the billing period is Month and the billing frequency
is 2, the billing cycle is 2 months. If the billing period is Week and
the billing frequency is 6, PayPal schedules the payments every 6
weeks.

In your stated example, setting BILLINGPERIOD to Monthly and BILLINGFREQUENCY to 12 will schedule payments once every 12 months.

To schedule payments once each month, you must set BILLINGPERIOD to Monthly and BILLINGFREQUENCY to 1.

Similarly, to schedule payments daily, you must set BILLINGPERIOD to Day and BILLINGFREQUENCY to 1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文