#glorious_pomelo_28277

1 messages · Page 1 of 1 (latest)

idle thunderBOT
tranquil blade
#

Hi, how can I help?

#

@slender jetty please type in the thread

slender jetty
#

I am using stripe for my android app (kotlin based app). I am creating connect custom account along with Tap-To-Pay feature. Everything is working fine. The issue is whenever I complete a transaction with TTP, that transaction goes into Stripe's Payments section. But I want it in connect custom account. Please guide me on this

tranquil blade
#

Could you please share the PaymentIntent ID pi_xxx?

slender jetty
#

okay let me give me a second

#

pi_3O7HLEA1ElCzYWXL0hLPXBFS

#

That's the PaymentIntentId

tranquil blade
slender jetty
#

I have seen the first link

#

Can you tell me what's the issue?

tranquil blade
#

You are using transfer_group, but you should use transfer_data.destination instead.

slender jetty
#

Can you please provide me reference code in kotlin?

#

That's the code I am using to create Payment Intent

val params = PaymentIntentParameters.Builder()
.setAmount(amount)
.setCurrency("aud") .setOnBehalfOf("acct_1NrggKPOcu7JpYTZ") .setTransferGroup("acct_1NrggKPOcu7JpYTZ") .setCaptureMethod(CaptureMethod.Automatic)
.build()

tranquil blade
slender jetty
#

Okay thanks

tranquil blade
#

Happy to help.