#wasabi-subscriptions
1 messages · Page 1 of 1 (latest)
hello @craggy jacinth,
- What are the points in a subscription invoice generated and charged?
could you explain what you mean by points?
- What are the different modes of subscriptions? Draft vs uncollectable etc?
i believe you're looking for the different subscription statuses? https://stripe.com/docs/billing/subscriptions/overview#subscription-statuses
- What are billing_cycle_anchors? How should we think about these for billing?
https://stripe.com/docs/billing/subscriptions/billing-cycle
- What are some gotchas when creating subscription items?
Nothing comes to mind.
Is there an API to poll all subscriptions in a certain state ?
This would be what you're looking for : https://stripe.com/docs/api/subscriptions/list#list_subscriptions-status
- How can we traverse to the Invoices after a subscription is deleted? Do we need to store the mapping of a customer to an invoice or we can rely on Stripe for that?
you can list all invoices for a customer or for a specific subscription : https://stripe.com/docs/api/invoices/list
@kind wave thank you for the quick replies! Re 1) points in terms of what are the scenarios for invoicing when a payment is charged?
i think you're looking for the invoicing lifecycle? https://stripe.com/docs/invoicing/overview
Thank you! 🙂