> 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-management/faq-app/question-entry-v2/sample-flows.md ## Article Content: # FAQ Question Entries: Sample Use Cases and Flows This article presents possible use cases and corresponding sample flows that you can support. This can be a helpful jumping off point as you plan your implementation. ## Sync FAQ content across multiple sites You can synchronize both categories and question entries across multiple sites to maintain consistency. To sync FAQ content across multiple sites: 1. Call the Categories API's [List Categories](https://dev.wix.com/docs/rest/business-management/faq-app/faq/category-v2/list-categories.md) method on the source site to retrieve all existing categories. 2. Add categories to target sites by calling the Categories API's [Create Category](https://dev.wix.com/docs/rest/business-management/faq-app/faq/category-v2/create-category.md) method for each category and passing the retrieved category data. Store a mapping between the source site's and target site's category IDs to use for question entry synchronization. 3. Call [List Question Entries](https://dev.wix.com/docs/rest/business-management/faq-app/faq/question-entry-v2/list-question-entries.md) on the source site to retrieve all of the site's question entries. 4. For each question entry in the response, extract the question entry data and update the `categoryId` to match the corresponding category ID on the target site using your stored mapping. 5. Call [Create Question Entry](https://dev.wix.com/docs/rest/business-management/faq-app/faq/question-entry-v2/create-question-entry.md) to add the updated question entries to each target site.