Hey folks,
I would like to access my subscriptions dataset to list all the members who have a pricing plan. The issue is that there is no subscription dataset I can see. Just the members private dataset and the pricing plans but I don’t see the connection.
It is easy to get the current user pricing plan:
let user = wixUsers.currentUser;
user.getPricingPlans()
.then((pricingPlans)=>{
let firstPlan = pricingPlans[0];
But I can’t find the access of all the current members who have a pricing plan and list them.
Maybe one of you knows how to crack this nut!