> 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 # GetUserFavoriteList # Package: dashboard # Namespace: DashboardFavoritesService # Method link: https://dev.wix.com/docs/api-reference/business-management/dashboard/dashboard-favorite-list/get-user-favorite-list.md ## Permission Scopes: Manage Dashboard: SCOPE.DC-OS.MANAGE_DASHBOARD ## Introduction Retrieves the Wix user's dashboard favorite list. --- ## REST API ### Schema ``` Method: getUserFavoriteList Description: Retrieves the Wix user's dashboard favorite list. URL: https://www.wixapis.com/dashboard/v1/user-favorite-list Method: GET Return type: GetUserFavoriteListResponse - name: favoriteList | type: DashboardFavoriteList | description: Wix user's dashboard favorite list. - name: id | type: string | description: Dashboard favorite list GUID. Automatically generated by Wix. - name: revision | type: string | description: Revision number. Increments automatically by 1 whenever the list is successfully updated. To prevent conflicting changes, pass the current revision number when updating the list. - name: createdDate | type: string | description: Date and time the dashboard favorite list was created. - name: updatedDate | type: string | description: Date and time the dashboard favorite list was last updated. - name: favorites | type: array | description: List of favorite dashboard pages. - name: id | type: string | description: Favorite GUID. Automatically generated by Wix. - name: pageId | type: string | description: GUID of the page added to the list. - name: relativeUrl | type: string | description: Relative URL appended to the page's URL for customizing the navigation. It can include path segments, a query string, or a fragment identifier. - name: title | type: string | description: Custom title displayed in the list of favorite pages. ``` ### Examples ### Get User Favorite List ```curl curl -X GET \ 'https://www.wixapis.com/dashboard/v1/user-favorite-list' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.dashboard.DashboardFavoritesService.getUserFavoriteList() Description: Retrieves the Wix user's dashboard favorite list. Return type: PROMISE - name: favoriteList | type: DashboardFavoriteList | description: Wix user's dashboard favorite list. - name: _id | type: string | description: Dashboard favorite list GUID. Automatically generated by Wix. - name: revision | type: string | description: Revision number. Increments automatically by 1 whenever the list is successfully updated. To prevent conflicting changes, pass the current revision number when updating the list. - name: _createdDate | type: Date | description: Date and time the dashboard favorite list was created. - name: _updatedDate | type: Date | description: Date and time the dashboard favorite list was last updated. - name: favorites | type: array | description: List of favorite dashboard pages. - name: _id | type: string | description: Favorite GUID. Automatically generated by Wix. - name: pageId | type: string | description: GUID of the page added to the list. - name: relativeUrl | type: string | description: Relative URL appended to the page's URL for customizing the navigation. It can include path segments, a query string, or a fragment identifier. - name: title | type: string | description: Custom title displayed in the list of favorite pages. ``` ### Examples ### getUserFavoriteList ```javascript import { favoriteList } from '@wix/dashboard-management'; async function getUserFavoriteList() { const response = await favoriteList.getUserFavoriteList(); }; ``` ### getUserFavoriteList (with elevated permissions) ```javascript import { favoriteList } from '@wix/dashboard-management'; import { auth } from '@wix/essentials'; async function myGetUserFavoriteListMethod() { const elevatedGetUserFavoriteList = auth.elevate(favoriteList.getUserFavoriteList); const response = await elevatedGetUserFavoriteList(); } ``` ### getUserFavoriteList (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { favoriteList } from '@wix/dashboard-management'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { favoriteList }, // Include the auth strategy and host as relevant }); async function getUserFavoriteList() { const response = await myWixClient.favoriteList.getUserFavoriteList(); }; ``` ---