> 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: FavoriteList ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-dashboard-management-v2/favorite-list/introduction.md ## Article Content: # About the Dashboard Favorite List API The Dashboard Favorite List API provides functionality to create and manage a list of favorite dashboard pages. It allows you to streamline [Wix users](https://dev.wix.com/docs/api-reference/articles/authentication/about-identities.md#wix-user) to [dashboard](https://support.wix.com/en/article/about-your-wix-dashboard) navigation experience and make important pages quickly accessible. With the Dashboard Favorite List API, users can: - [Create](https://dev.wix.com/docs/velo/api-reference/wix-dashboard-management-v2/favorite-list/create-user-favorite-list.md), [retrieve](https://dev.wix.com/docs/velo/api-reference/wix-dashboard-management-v2/favorite-list/get-user-favorite-list.md), [update](https://dev.wix.com/docs/velo/api-reference/wix-dashboard-management-v2/favorite-list/update-user-favorite-list.md), and [delete](https://dev.wix.com/docs/velo/api-reference/wix-dashboard-management-v2/favorite-list/delete-user-favorite-list.md) their list of dashboard favorites. - [Add](https://dev.wix.com/docs/velo/api-reference/wix-dashboard-management-v2/favorite-list/add-user-favorite.md) and [delete](https://dev.wix.com/docs/velo/api-reference/wix-dashboard-management-v2/favorite-list/delete-user-favorite.md) individual dashboard favorites to and from their list. - Create nested views of collections, developer tools, or other dashboard pages for quick access. - Assign custom titles to favorite pages for easier navigation. ## Before you begin It's important to note the following points before starting to code: - Each Wix user can only have one list of favorite dashboard pages. - We recommend you avoid making changes to the list without the user taking explicit action. - To use the Dashboard Favorite List API, import `favoriteList` from the `wix-dashboard-management.v2` module: ```js import { favoriteList } from "wix-dashboard-management.v2"; ``` ## Use cases - Including an **Add to Favorites** button in your [dashboard pages](https://dev.wix.com/docs/develop-websites/articles/coding-with-velo/frontend-code/dashboard-admin-pages/working-with-dashboard-pages.md) to streamline your [contributors'](https://support.wix.com/en/article/about-contributor-roles-permissions) dashboard navigation experience. - Create a nested view of frequently visited dashboard pages for quick access. ## Terminology - **Dashboard Favorite List**: A UI element that displays a list of favorite dashboard pages used for quick access. - **Dashboard Favorite Page**: A dashboard favorite page on the list. It has a custom title, and it can have a relative URL. - **Page**: A dashboard page.