定期付款,条带金额不等

时间:2018-11-28 06:53:13

标签: php stripe-payments

我正在研究一个项目,订阅者可以每月限制订阅。

下面的示例

Lets say i have 5 products A - Euro 40 ,B - Euro 40, C - Euro 40, D- Euro 40,E - Euro 40

Month 1 - A + B + C + D -> First order. I am using stripe ideal to generate the payment for 4 products. Total Euro 160

Month 2 - Subscriber cancels product D subscription. So now the recursive payment must work only for the price of A+B+C. So now the total comes Euro 120

Month 3 - Subscriber cancels product C subscription. So now the recursive payment must work only for the price of A+B. So now the total comes Euro 80

Month 4 - Subscriber cancels product A + B subscription. So the subscription should be cancelled.

到目前为止完成的工作:

理想的条纹只有一次付款。在这种情况下,我可以使用SEPA,但会在14-16个工作日内收到更新。 https://stripe.com/docs/sources/ideal/recurring

我正在使用wordpress并使用Stripe PHP库以编程方式(而不是使用插件)启动理想的付款方式。

我可以选择iDEAL吗?

如果我收集了客户的卡详细信息并在未经用户授权的情况下对卡进行重复收费,是否有可能。

希望我的问题很清楚。

1 个答案:

答案 0 :(得分:0)

我当然不特别了解这个世界,但是Stripe在这里确实有一些指导:

https://stripe.com/docs/sources/ideal/recurring

基本上,您必须将其变成SEPA直接付款来源,然后每个月将其所欠的款项通知您的客户。希望这会有所帮助!

相关问题