We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a requirement of getting the total number of Subscriptions of specific plan within duration of one month.
Subscriptions
A work around is to use ChargeBee::Subscription.list( ... ).count and set the limit to a very big number (and use next_offset, if ever needed).
ChargeBee::Subscription.list( ... ).count
next_offset
To save resources, is there a better way of getting the total items count?
https://apidocs.chargebee.com/docs/api/subscriptions
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a requirement of getting the total number of
Subscriptions
of specific plan within duration of one month.A work around is to use
ChargeBee::Subscription.list( ... ).count
and set the limit to a very big number (and usenext_offset
, if ever needed).To save resources, is there a better way of getting the total items count?
https://apidocs.chargebee.com/docs/api/subscriptions
The text was updated successfully, but these errors were encountered: