#falejand-transfer
1 messages ยท Page 1 of 1 (latest)
you woudn't get that event, it never actually happens
transfer.paid is an old name for payout.paid and isn't actually related to Transfers tr_xxxx today (see https://stripe.com/docs/transfer-payout-split)
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.
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
I do my payment by a paymentIntent I need my backend to be notified of that event, is this the API you are refering to?
https://stripe.com/docs/api/transfers/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
to get the transfers and check a status on it?
if the transfer API call succeeded then 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
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?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
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