#istcf - payment method
1 messages · Page 1 of 1 (latest)
If the payment method & customer exist on the connected account, you cannot use them on the platform
You would need to recreate both objects (and re-collect payment method info from the customer) on the platform.
I can't ask twice for the credit card. they provide it once.
What type of connect account is it?
custom
We have this info on cloning the payment methods but it only works from Platform -> Connected Account. You can't go the other way.
https://stripe.com/docs/payments/payment-methods/connect#cloning-payment-methods
is there a way to collect platform_fee once on a subscription? that can solve the issue.
application_fee
@craggy bloom ?
There's a lot going on. I may take a little time to get back to you
NP
Hey there sorry it took so long, I missed that I hadn't yet responded here when taking over from Snufkin
You can do this by setting the application_fee_percent when you create the subscription to apply to the first invoice:
https://stripe.com/docs/api/subscriptions/create?lang=node#create_subscription-application_fee_percent
Then after that first invoice is paid (usually right away), you can _update) the subscription to set the fee to 0
https://stripe.com/docs/api/subscriptions/update?lang=node#update_subscription-application_fee_percent
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.