将 Stripe 费用转嫁给订阅客户的推荐方式是什么?

What's the recommended way to pass on Stripe fees to customers on subscriptions?

我想将 stripe 费用转嫁给用卡付款的客户,从而鼓励他们使用 ACH 付款方式。

我考虑过将费用单独收费,但收费是收费的,因此客户最终支付的费用会高于 Stripe 费用率。

此外,我可以在发送 invoice.created webhook 时添加发票项目,但是,存在如何处理客户在发票最终确定后更改付款方式的问题。

那么,有什么想法吗?

通常不鼓励将支付处理费转嫁给客户,在某些情况下,这可能是违法的。

也就是说,Stripe 有 a support article that includes the formula you need to use to pass fees to customers,同时占收费金额的总体增长:

将此公式应用于订阅的逻辑将非常棘手。正如您所指出的,客户可能会在发票最终确定后切换到不同的付款方式,如果您的目标是仅根据所使用的付款方式转嫁费用,则可能 practical/possible Stripe 中 Subscription/Invoice 的上下文。