#ericfavor2416
1 messages · Page 1 of 1 (latest)
Can you share what you would like to achieve?
I am trying to add Apple Pay into our app using Payment Intent, and for some scenario, when we capture the Payment Intent, we'd like to transfer a portion of the captured amount to a Connect Account. So I am trying to figure out at what point can I update the Payment Intent with the transfer_data.destination (or when is it too late to do so)?
the thing is we might not know the transfer_data.destination until later
sorry....one more clarification....we're doing the confirm now, capture later flow with this
I'd recommend using Separate Charges and Transfer in this case that your system will make a separate transfer request after the connected account has been determined: https://stripe.com/docs/connect/separate-charges-and-transfers
I see...but do you know, once the Payment Intent is confirmed, can I still update its transfer_data.destination?
No. In fact Payment Intent doesn't support updating transfer_data.destination. transfer_data.destination can only be set at Payment Intent creation.
I see...ok thank you!