Hello all,
I’m using Managed Pricing and trying to let a merchant accept a private plan. The plan is visible to the target store (whitelisted), has monthly and annual prices configured, 0‑day trial, and a welcome link. The Admin was tested in both fr-FR and en-US.
Symptom
When the merchant clicks “Accept plan,” the network request for AppPlanSubscriptionCreate returns 200 but with an error:
{
“data”: { “appPlanSubscriptionCreate”: null },
“errors”: [
{ “message”: “Pricing plan content for plan not found” }
]
}
Note : the basic plan is working fine, seems like this problem happens to any private plan i try to create
What I tried
-
Edited the plan in Partner Dashboard > Pricing (private plan > … > Edit) and set Display name + Description. Same error.
-
App Store listing > Pricing details > Manage: this button just navigates back to the Pricing page that lists plans. I never see a dialog/editor to manage “plan content” for private plans.
-
Switched Admin locale between English/French. Same error.
-
In the Partners GraphQL Explorer, my schema only exposes QueryRoot { app, publicApiVersions, transaction(s) } and type App { id, name, apiKey, events }. There are no plan/presentation fields (e.g., appPlans/pricingPlans or appPlanPresentation/upsert), so I can’t programmatically upsert “plan content.”
Thank you for reading, Im trying to learn and any guidance for managing “plan content” for private plans would be greatly appreciated.