#Sophia123
1 messages · Page 1 of 1 (latest)
Can you share the payment intent id associated with the above messages?
I have setup intent id = seti_1MzLgH2eAB6s7U3SXtPK07F1. I'm trying to save a payment instrument without a purchase
Ok thanks
Are you using the payment intent? Can you share a code snippet for how you're intializing stripe?
in this case I don't use payment intent
I just create a setup intent and it works for card and Sepa
final SetupIntentCreateParams.Builder builder = SetupIntentCreateParams.builder();
if (StringUtils.isNotEmpty(customerId)) {
builder.setCustomer(customerId);
}
if (paymentMethods != null && !paymentMethods.isEmpty()) {
builder.addAllPaymentMethodType(paymentMethods);
}
builder.setUsage(SetupIntentCreateParams.Usage.OFF_SESSION);
builder.putAllMetadata(metadata.toMap());
SetupIntentCreateParams setupIntentCreateParams = builder.build();
SetupIntent setupIntent = invoke("createSetupIntent", trackingId, setupIntentCreateParams, SetupIntent::create);
No I'm asking specifically about the front end part of this
This is a connect scenario, so wondering how you're initializing stripe
Or are you using Checkout?
const defer = $q.defer();
this.initStripe();
const appearance = getStripeAppearance();
elements = stripe.elements({appearance, clientSecret});
this.initStripe = () => {
const locale = lang.getLanguageTag();
let params = {
locale: locale,
};
if (accountId) {
params.stripeAccount = accountId;
}
stripe = Stripe(apiKey, params);
}
can you remove
and try and see if you get the same warning log line?
@queen hamlet ^ ?
can you share the SetupIntent ID for the one you just created?
seti_1MzMeq2eAB6s7U3SwpLpeaXB
thanks, looking
hmm you're making a Connect request
I didn't catch that earlier
i.e. your platform is asking to create a SetupIntent on your connected accounts
can you check the PaymentMethod settings on the Dashboard of the connected account
it is the one named Don't delete
for the ...test02 email
I don't have only Bancontact
checking
@queen hamlet and to clarify, do you still see the two PaymentMethods on PaymentElement? despite the warning?
I see this
ah got it, looking
Hello! I'm taking over and catching up...
So is the issue that you want ideal, bancontact, and sofort enabled in live mode?
in test mode
They're already working in test mode, aren't they? They're showing up in the Payment Element.
In your screenshot I mean.