#niti-transfer-insufficient-funds
1 messages ยท Page 1 of 1 (latest)
Hey there ๐ do you happen to have the request ID from the request returning the 'insufficient funds" error?
PaymentIntent id - pi_3Jk5NwF86UteDh9f1lMlHt9L
Thanks for that, taking a look
ok
I do see the transfer_group values that you're using, but in addition to that I think you'll also want to leverage our source_transaction parameter. This will tie the processing of the transfer and charge together.
https://stripe.com/docs/connect/charges-transfers#transfer-availability
https://stripe.com/docs/api/transfers/create#create_transfer-source_transaction
ok so how long it take to reflect the fund after paymentIntent
That's going to be dependent on the type of payment method used.
If done by card than
Usually it's about 2 days for cards. If you want to be exact you can find the Charge associated with the PaymentIntent, and the Balance Transaction associated with that and look at the available_on value.
https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-available_on
I'm not entirely clear on what type of failures you're referring to, but you can find the event type that correlates to the failures you're looking for 0 and then list all events of that type via our API 1.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.