#Scott-sourcetransaction
1 messages ยท Page 1 of 1 (latest)
Hey Again ๐
Hi there :), can you share the request ID for the error?
And tell me more about exactly what you are trying to do?
I'm not sure where to find the request ID
I am trying to create a transfer to a stripe connect account without having an available balance - So I am trying to use SourceTransaction using the inital PI
req_jtajLjDfcnr7Jv
Ah okay you are putting in the PaymentIntent ID in place of the Charge ID
You want the Charge ID which will be located within the PaymentIntent here: https://stripe.com/docs/api/payment_intents/object#payment_intent_object-charges-data
That worked perfectly
๐
Now my last problem - When I try to get a list of transfers on a Connect Account, I am getting nothing returned?
Can you paste that code as a snippet here using three ` marks like test
So that it is easier for me to read
Actually just do that in the future
This one is pretty clear ๐
Looking
Oh
Okay
So Transfers don't live on the Connected Account
They live on your platform
So you wouldn't pass a StripeAccount option here
If you want to see the transfers sent to a specific Connected Account, then you would set the Connected Account ID as the destination in your list params: https://stripe.com/docs/api/transfers/list#list_transfers-destination
๐
Thank you