#xmrcivicboix
1 messages · Page 1 of 1 (latest)
Hi there, what do you mean by customers who churned for a given time range ?
i want to find out which customers churned for the month of march 2023 for example
Does the Billing Dashboard provide the information you need? https://dashboard.stripe.com/billing
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
sorry i meant using the api
I don't think there's an API to retrieve the analtyics data from Billing Dashboard.
i just want an api to retrieve a list of customers who canceled their subscription in march 2023
- Use the list subscription API (https://stripe.com/docs/api/subscriptions/list#list_subscriptions) with
status=cancelled - Filter the list with
28 feb 2023 < cancelled < 31 mar 2023 - Get the
customerfrom the remaining subscriptions.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.