#eckhartpark_best-practices
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1351107223207542807
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- eckhartpark_api, 2 days ago, 33 messages
this is all in test mode
๐
Can you share the PaymentIntent Id ?
What about the balance of the Connected Account ?
pi_3R3YKlGpTB9CACrt1ahUNHYE
It looks like the $60 transfer shows up on the connected account
but not sure I'm looking at it correctly
resp = stripe.PaymentIntent.create(
amount=int(final_total*100),
currency=currency,
payment_method_options={"card": {"request_three_d_secure":"any"}},
automatic_payment_methods={'enabled':True},
application_fee_amount=int((comedyseen_total+stripe_total)*100),
transfer_data= {
'destination': acctnum.stripe_user_id
},
)
what my code looks like in python
It's correct yeah, the collected fees are 6.25
ok, am I wrong in expecting the the transfer to be $53.75?
The transfer has the full amount
It seems like I took $6.25 but still sent the full $60 to the connected account
are you saying that $60 goes to the connected account and then they send $6.25 to me?
It's done automatically yeah
You can verify the payout later
to confirm that the Connected Account get's only the 53.75$ funds
Ok so everything looks good I'm not making money out of thin air...its just that later on when the payout happens, they will have $53.75 and I will have $6.25?
I think that's what you're saying
Yes it will reconciliate.
Thank you