You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
There are discrepancies in the max API calls number between the sales dashboard and the Django admin views for some subscriptions. Also, we need to ensure that the number of API calls is kept up to date for every organisation.
Steps to reproduce the behavior:
Go to the sales dashboard and pick an organisation with a start-up plan. See that the max number of API calls is 1M.
Go to the Django admin page and search for the same organisation. See that the max number of API calls is 50K.
Describe the solution you'd like
The organisation subscription information must be kept on-sync. The same number of max API calls should be shown in the sales dashboard and the Django admin pages.
The text was updated successfully, but these errors were encountered:
No, I don't think so. I think the issue here is that there are 2 places that this data is located. One is in Chargebee (which is the correct data), the other is in the DB for the API itself. This provides default values for those organisations that don't have data in Chargebee.
The data from Chargebee can be retrieved from the organisations/:id/get-subscription-metadata endpoint.
To resolve this issue, we should either:
Remove the data from the organisation on retrieval
Retrieve the data from CB when we retrieve the organisation (since this data is cached, maybe that's ok)
Is your feature request related to a problem? Please describe.
There are discrepancies in the max API calls number between the sales dashboard and the Django admin views for some subscriptions. Also, we need to ensure that the number of API calls is kept up to date for every organisation.
Steps to reproduce the behavior:
Describe the solution you'd like
The organisation subscription information must be kept on-sync. The same number of max API calls should be shown in the sales dashboard and the Django admin pages.
The text was updated successfully, but these errors were encountered: