I've a list of customers on Stripe Account. Now the customers have done the monthly payments also, I want the list of the payments of particular customer.
I've used this :
StripeCustomerService stripeCustomerInfo = new StripeCustomerService();
var customerInfo = stripeCustomerInfo.Get("customerId");
But customerInfo
doesn't displays the list of his payments that he has done so far.