#Charmon-connect-fundsflow
1 messages · Page 1 of 1 (latest)
As far as I know I can't just simply add fees on stripe checkout, so does that mean that I would have to create "one time product" which would be 10% fee calculated based on the main products price?
If you were using Checkout (instead of a custom payment flow) you would need to add an additional line-item for the fee, yes: https://stripe.com/docs/api/checkout/sessions/create?event_types-payment_intent.payment_failed#create_checkout_session-line_items
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Also, would I have to use transfers instead of charges + would all this flow work for standard connect accounts?
The flow would work with any kind of Connect account. The type of flow will depend on where you want the funds to go first and how you want to transfer them to the creators. I would recommend reading up on different types of payment flows here: https://stripe.com/docs/connect/charges#types
Charmon-connect-fundsflow
It basically recommends me destination charges.
However I can't use application_fee_amount since I don't know how much is going to be deducted from me
Can you use terms like platform and Connect account? I'm not sure who "me" is in this context
How do I specify the amount that will be sent to connect account?
Since we have 1 main product ($100) and 1 fee product ($10).
I want to simply do something like this:
{
//...
stripe_connect_account_amount: 100,
platform_amount: {{WHATEVER_IS_LEFT}}
}
whats the closest thing to this?
That sounds like Separate Charges and Transfers would be a better fit
Ok, got it.
And would that still be possible with standard stripe connect accounts?
yup!