#Namrata
1 messages · Page 1 of 1 (latest)
Hi there!
Pasting your other message here:
I need API for .ent
.net
You could use the list PaymentIntent endpoint and pass the customer ID https://stripe.com/docs/api/payment_intents/list?lang=dotnet
There is no plan detail in it.
What do you mean by plan?
I need to display list of customers with their subscribed plans and collected payments
Subscriptions, Products
Ha! So you want the subscriptions of a customer?
Then it's this endpoint: https://stripe.com/docs/api/subscriptions/list?lang=dotnet
subscriptions with details of payment.
For example, if a customer has subscribed since 6 months. So stripe must have collected payments since 6 months.
You'll need multiple API calls for this. For example:
- List all subscriptions with https://stripe.com/docs/api/subscriptions/list?lang=dotnet
- For each subscription, get all invoices/payments with https://stripe.com/docs/api/invoices/list?lang=dotnet