> 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/portfolio/projects/sample-flows.md ## Article Content: # 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. ## Delete residential building projects older than 2 years You can integrate with the Projects API to display residential building projects available for investment. To keep listings current, once a year you might want to delete projects that are over 2 years old. 1. Call [Create Projects](https://dev.wix.com/docs/rest/business-solutions/portfolio/projects/create-project.md) to create a project for each residential building available for investment. 2. Once a year, call [Query Projects](https://dev.wix.com/docs/rest/business-solutions/portfolio/projects/query-projects.md) using the created date property to retrieve all projects in the site's portfolio older than 2 years. Record the returned project IDs. 2. For each project ID returned, call [Delete Project](https://dev.wix.com/docs/rest/business-solutions/portfolio/projects/delete-project.md) to remove the project from the portfolio. ## Fetch project information for your art gallery You can create a curated art gallery that lists various artists' projects. To display the most up-to-date projects from your artists, set the gallery to automatically fetch and display projects whenever Wix users add, update, or delete them. 1. Wix users can create and manage projects in a Wix Portfolio. 2. Listen for the [Project Created](https://dev.wix.com/docs/rest/business-solutions/portfolio/projects/project-created.md), [Project Updated](https://dev.wix.com/docs/rest/business-solutions/portfolio/projects/project-updated.md), and [Project Deleted](https://dev.wix.com/docs/rest/business-solutions/portfolio/projects/project-deleted.md) events to detect when projects have been added, updated, or deleted. Retrieve the latest project data from the event object. 3. Reflect the changes in your gallery.