#praveendd25

1 messages · Page 1 of 1 (latest)

inner shoalBOT
valid grove
#

Let's try this again

#

What kind of 'US bank payments'? ACH Debit?

trail grove
#

i can see only these options

#

how to test this Us bank account options?

#

@valid grove please help me out

inner shoalBOT
heavy compass
#

are there any errors in the browser console when this happens?

trail grove
#

it is not about error which one should be used to test this us bank acocunt ?

heavy compass
#

you would click "Test Institution"

trail grove
#

but it is not showing success it is showing processing

heavy compass
trail grove
#

but am not using web hooks, i am verifying payment status in confirm payment itself

heavy compass
#

it's not possible to "not use" webhooks, they are part of the integration

#

i am verifying payment status in confirm payment itself
yep, and you confirmed that the payment has started processing, which is normal. It then takes multiple days for US Bank account payment to succeed or fail, and you get a webhook when that happens.

trail grove
#

this.stripe.confirmPayment({
elements,
redirect: "if_required"
}).then(function (result) {
// Handle result.error or result.paymentIntent
if (result.error) {
$("#div_loader").hide();
bootbox.alert(result.error.message);
}
else {
switch (result.paymentIntent.status) {
case 'succeeded':
if (callbackSuccess != null)
callbackSuccess(result.paymentIntent);
break;
case 'processing':
if (callbackSuccess != null)
callbackSuccess(result.paymentIntent);
break;
case 'requires_payment_method':
callbackError({ errorCode: Code.error, errorMsg: 'Payment failed. Please try another payment method.' });
break;

                default:
                    callbackError({ errorCode: Code.error, errorMsg: 'Something went wrong. Please try again.' });
                    break;
            }
        }
    });
heavy compass
#

you need to add a case 'processing' as well.

#

ah you have one

trail grove
#

ok

heavy compass
#

so yeah, all good.

trail grove
#

if the bank transfer fails we need to do what

#

how do we comment off bank transfer for now

#

we need only card payment which is immediate

#

apart from bank transfer we can enable other options where payment is immediate