#alexz-paymentintent-transfer
1 messages · Page 1 of 1 (latest)
Do you have example IDs of a payment intent and transfer you are looking to associate here?
Here are 3 examples of the payment intent ids: pi_3MLVC0L04wqzQCvU0yqYbISi, pi_3MNJZiL04wqzQCvU12YJSUaP, pi_3MLrfUL04wqzQCvU0dyvp5aO
we currently have 57 to correct so far
Can you tell me a bit more about what you want to correct here? I'm still not fully clear on the end goal at the moment
alexz-paymentintent-transfer
Most of our payments do have the transfer information. But we found a place where it was not getting done. We need a way to fix an existing payment and update it with the transfer information. Is there a way to do this manually or via API?
that is not possible once a PaymentIntent has already succeeded, in that case it's too late
So the transfer information is associated specifically on the payment intent and not the actual payment record? (Just trying to understand why since I don't know how stripe data is stored on the stripe end). Coz right now, these affected payments are just sitting on the stripe account until we move them since there is no transfer info. We were given instructions on how to manually transfer them but this transfers a user entered amount. If this was done, will it update the payments for these affected transactions with that transfer info?
You can always create a Transfer and pass source_transaction: 'ch_123' to link the Charge and that Transfer
but it's impossible to add transfer_data to a succeeded PaymentIntent after the fact
got it. So we need to manually create a transfer for each problem transaction and pass the id of the transaction as the source_transaction.
if yes...Is there a way to do this manually via stripe site since we currently just have less than records that are affected OR do we have to build code and go through the API?
you'll need to write code for this
understood. Do you happen to have info handy regarding manually creating the transfer and assigning the ch id? Currently searching on strip docs and not yet finding it.
https://stripe.com/docs/connect/charges-transfers also shows how it works
mostly you have the successful payment and now you want to create the Transfer linked to each of those payments