#jzhc9jzhc9

1 messages · Page 1 of 1 (latest)

kindred spadeBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

fluid pivot
#

hello! can you share the code snippet where the SetupIntent or PaymentIntent being created?

sacred solstice
#

PaymentIntentCreateParams params =
PaymentIntentCreateParams.builder()
.setAmount(groupBuy.getPrice())
.setCurrency(groupBuy.getCurrency())
.setCustomer(customer.getId())
.setAutomaticPaymentMethods(
PaymentIntentCreateParams.AutomaticPaymentMethods
.builder()
.setEnabled(true)
.build()
)
.build();
PaymentIntent paymentIntent = PaymentIntent.create(params);