I'm trying to roll out some pricing changes so I’ll give a summary of what I’m doing
We will be using $subscription->updateAtRenewal();
to update users from their plans on next billing date. I want to log how many paid dashboards these users will have though before that renewal so we can see in billing and show the users what their next bill will be. Is this possible? We don’t want to wait for subscription to be updated to have to log usage
I attached a screenshot to show the code we are using.
When I tested if this would work I got an error saying
Couldn't find AddOn with add_on_code = 112.
This error happens when I run usage->create()
The subscription in Recurly shows it will be updated to new plan on next billing date, but I need to track their usage. Is this possible at all or would I have to instead create a subscription to use instead of add ons?