Could anyone please share some insight on how I would go about updating an item owned by a user based on the current level of their subscription status?
Essentially I am creating a listing site that allows users to list items on my site. What I want to do is set the item for this user as active when they subscribe to a plan and then when the plan ends or is cancelled and the remaning time for the plan runs out the item is then marked as inactive...
Use the Events that are fired by Spark like UserSubscribed and SubsriptionCanceled. They are mentioned and described on Spark docu. you only need to create the Appropriate Listeners.
Be aware that SubscriptionCanceled is being fired when the actual subscription comes to an end and NOT when the users clicks the Cancel Subscription button.