在我的Stripe connect实现中,我有一个与此非常相似的代码:
stripe.PaymentIntent.create(
amount=30000,
currency='gbp',
payment_method_types=['card'],
on_behalf_of='{{CONNECTED_ACCOUNT_ID}}',
transfer_data={
'destination': '{{CONNECTED_ACCOUNT_ID}}',
},
)
据我了解,Stripe将在主帐户上创建付款,并将转移目标转移到关联帐户:
Amount: 300,00 AUD
Commission: 9,00 AUD
Net: 291,00 AUD
Transfer:
to: connected account
amount: 300,00 AUD <----- Want this to be 291,00
fee: 0.00 AUD
问题