-
-
Notifications
You must be signed in to change notification settings - Fork 312
Shop Plan
Laura Burns edited this page Jan 5, 2024
·
2 revisions
This method uses Shopify's GraphQL API to get the shop's subscription plan.
var service = new ShopPlanService(shopDomain, accessToken);
var shopPlan = await service.GetShopPlanAsync();
This method uses Shopify's GraphQL API to check if the shop is a development shop. Returns true if shop.plan.partnerDevelopment
is true.
var service = new ShopPlanService(shopDomain, accessToken);
var isPartnerDevelopmentShop = await service.IsPartnerDevelopmentShopAsync();