#falejand-transfer

1 messages ยท Page 1 of 1 (latest)

solar onyx
#

you woudn't get that event, it never actually happens

#

I have never seen that page you're looking at

#

it's ancient so I highly doubt it's relevant unless you have a Stripe integration you built pre-2016

#

the way it simply works is that you call v1/transfers and if there was no error, then it succeeded.

rough gust
#

oh I see, that's unfortunate, I need to enforce my system by making sure a transfer is successful any suggestion?, created will only give the event that was created but I am looking for the funds to be successfully sent and received by the transferAccount

#

oh sorry you already replied with one suggestion

#

to get the transfers and check a status on it?

solar onyx
rough gust
#

The transfer happens automatically on the SDK as I see by configuration, I define the details on the payment Intent on my backend, and my frontend pays directly with Stripe components.

I don't remember doing a transfer API to make the actual transfer other than putting the details on the intent.

Or is this the API you refer? https://stripe.com/docs/api/transfers/retrieve
A GET on the retrieve API call and if such transfer is there it means it was successful?

solar onyx
#

ok then if you're creating a transfer using transfer_data for a Destination charge then it's fine too

#

you simply don't need to do any of this, if the charge succeeded then the transfer succeeds and the funds moved to the connected account successfully and will be paid out to that account's external bank account as normal per their settings

#

Or is this the API you refer? https://stripe.com/docs/api/transfers/retrieve
A GET on the retrieve API call and if such transfer is there it means it was successful?
yep! but you really don't need to manually check that. The charge attept would have failed if we can't make the transfer for some reason

rough gust
#

I see, so I can potentially listen for my regular charge.succeeded event and know my transfer is successful

#

Thanks for the information provided it was really helpful, I will share the details with my team ๐Ÿ™‚ have a great day