exists are function that is equavilent to confirmCardPayment but in serverside ?
I need this function in serverside:
const confirmPayment = await stripe?.confirmCardPayment(data, {
payment_method: paymentMethodReq?.paymentMethod.id
});
Stripe provides Payment Intent Confirmation API at the server, which is equivalent to
stripe.confirmCardPayment.You may set the payment method ID (pm_xxx) in
payment_methodparameter when confirming the PI. For example,