#eckhartpark_best-practices

1 messages ยท Page 1 of 1 (latest)

static oakBOT
#

๐Ÿ‘‹ 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.

rancid maple
#

this is all in test mode

pale kernel
#

๐Ÿ‘‹
Can you share the PaymentIntent Id ?

#

What about the balance of the Connected Account ?

rancid maple
#

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

pale kernel
#

It's correct yeah, the collected fees are 6.25

rancid maple
#

ok, am I wrong in expecting the the transfer to be $53.75?

pale kernel
#

The transfer has the full amount

rancid maple
#

It seems like I took $6.25 but still sent the full $60 to the connected account

pale kernel
#

then there'll be collected fees

rancid maple
#

are you saying that $60 goes to the connected account and then they send $6.25 to me?

pale kernel
#

It's done automatically yeah

#

You can verify the payout later

#

to confirm that the Connected Account get's only the 53.75$ funds

rancid maple
#

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

pale kernel
#

Yes it will reconciliate.

rancid maple
#

Thank you