> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Sample Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/plans-v3/sample-flows.md ## Article Content: # Plans V3: Sample Flows This article presents possible use cases and corresponding sample flows that you can support. It provides a useful starting point as you plan your implementation. ## Import plans from external systems You can create plans using data stored in external systems. This is useful when migrating to Wix from another platform or maintaining data across multiple platforms. To import plans from an external system: 1. Prepare your plan data as an array of plan objects, ensuring each has the required fields: `pricingVariants` and `visibility`. 2. Iterate through your plan array, calling [Create Plan](https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/plans-v3/create-plan.md) for each plan. To comply with rate limits, send the requests at least 1 second apart from each other. 3. [Set up ongoing synchronization](#sync-pricing-plans-across-multiple-systems) using events to keep both systems in sync. ## Sync pricing plans across multiple systems You can synchronize plan data between Wix and external systems to maintain consistency across platforms. To sync pricing plans with an external system: 1. Call [Query Plans](https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/plans-v3/query-plans.md) to retrieve all existing plans from Wix. 2. Store the plan data in your external system, ensuring you save the plan's `id` and `revision` for future updates. 3. Set up event listeners for [Plan Created](https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/plans-v3/plan-created.md), [Plan Updated](https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/plans-v3/plan-updated.md), and [Plan Deleted](https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/plans-v3/plan-deleted.md) events to automatically sync changes. > **Note:** When receiving a [Plan Updated](https://dev.wix.com/docs/api-reference/business-solutions/pricing-plans/plans-v3/plan-updated.md) event, use the `revision` number to avoid conflicts and update only the changed fields in your external system.