#rockllo-ach-java

1 messages · Page 1 of 1 (latest)

vapid prairieBOT
half blade
#

Hello, what kind of bank payments are you working with? ACH?

limpid finch
#

Yes sorry, ACH - I enabled financial connections. Was hoping that would allow for the instant verification. i think that is there cos I see the options to pick the Test institution (dev mode) etc. Its the link to enter bank details manually I am unsure on

#

The flow if they go that route, what we should look for. Would rather turn that option off if possi le

half blade
limpid finch
#

Great thank you. Then as the API examples don't go into detail. Woudl it be this:

#

PaymentIntentCreateParams.Builder builder = PaymentIntentCreateParams.builder()
.setAmount(amountCents)
.setCurrency("usd")
.setAutomaticPaymentMethods(
PaymentIntentCreateParams.AutomaticPaymentMethods
.builder()
.setEnabled(true)
.build()
)
.setPaymentMethodOptions(
PaymentIntentCreateParams.PaymentMethodOptions???

            )
#

dunno if I am in the right realm as the Builder way isn't as well known to me

half blade
#

Good question. I am not that familiar with the builder syntax myself. Looking to see if we have samples here and will get back to you on that

buoyant beacon
#

rockllo-ach-java

#

👋 taking over

buoyant beacon
#

Okay the server calmed down so I was able to write an end to end example: ```PaymentIntentCreateParams params = PaymentIntentCreateParams.builder()
.setAmount(1099L)
.setCurrency("usd")
.setSetupFutureUsage(PaymentIntentCreateParams.SetupFutureUsage.OFF_SESSION)
.setAutomaticPaymentMethods(
PaymentIntentCreateParams.AutomaticPaymentMethods.builder()
.setEnabled(true)
.build())
.setPaymentMethodOptions(
PaymentIntentCreateParams.PaymentMethodOptions.builder()
.setUsBankAccount(
PaymentIntentCreateParams.PaymentMethodOptions.UsBankAccount.builder()
.setVerificationMethod(PaymentIntentCreateParams.PaymentMethodOptions.UsBankAccount.VerificationMethod.INSTANT)
.build())
.build())
.build();

PaymentIntent paymentIntent = PaymentIntent.create(params);```

limpid finch
#

Ah awesome, thank you so much. I had missed that..urgh had node instead of java when i was scannign throug

#

thank you so much