我对经常性付款感到有点困惑,这是一生的。我试图找出在那年过去之后我是否必须以某种方式更新定期付款资料。我正在阅读https://www.x.com/developers/paypal/documentation-tools/api/createrecurringpaymentsprofile-api-operation-nvp#id09BNA01I0E9以下内容:
The combination of BillingPeriod and BillingFrequency cannot exceed one year.
但是还有一个TOTALBILLINGCYCLES参数说明
For the regular payment period, if no value is specified or
the value is 0, the regular payment period continues until the
profile is canceled or deactivated.
它表明如果我设置为零,我不需要对配置文件做任何事情。我是对的吗?
答案 0 :(得分:6)
BillingPeriod
和BillingFrequency
与定期结算帐户的有效期不同。
BillingPeriod
Paypal需要等多长时间才能收费?日常?每周?每月?
BillingFrequency
是该用户每年收取多少次费用。
因此,如果您的每周BillingPeriod
和BillingFrequency
为52,则每年的每周都会向用户收取费用。如果您的每周BillingPeriod
和BillingFrequency
为26,那么将在每年的上半年向用户收取费用,然后不再向他们收费。
TOTALBILLINGCYCLES
您希望此订阅运行多长时间。如果将其设置为零,则会永久运行(直到取消)。如果您将其设置为3,那么它将向用户收取三个周期(3年)的费用,然后自行终止。