I have found only card payment mode in the stripe API documentation. I wanted to use Googlepay, Phonepe, Paytm kind of wallet payments/Upi payments using ASP.NET Core Web API using C#.
I have read documentation from Stripe, but without any luck.
try
{
AddStripePayment newPayment = new(
customerId,
paymentDetails.emailAddress,
paymentDetails.Description,
paymentDetails.Currency,
paymentDetails.Amount);
return await _stripeService.AddStripePaymentAsync(newPayment, ct).ConfigureAwait(false);
}
catch (Exception exp)
{
return null;
}
I want to get the correct code to write to integrate wallet payments.