> 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 # Method name: createUserFavoriteList(favoriteList: DashboardFavoriteList) # Method package: wixDashboardManagementV2 # Method menu location: wixDashboardManagementV2 --> favoriteList --> createUserFavoriteList # Method Link: https://dev.wix.com/docs/velo/apis/wix-dashboard-management-v2/favorite-list/create-user-favorite-list.md # Method Description: Creates a list of favorite dashboard pages for the current Wix user. A Wix user can only have one such list. > **Note:** > When first calling this method on behalf of a Wix user, you can create a list that contains one or more favorite dashboard pages. However, if a list already exists for that Wix user, calling this method generates an error. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## createUserFavoriteList example for dashboard page code ```javascript import { favoriteList } from 'wix-dashboard-management.v2'; async function createUserFavoriteList(favoriteList) { try { const result = await favoriteList.createUserFavoriteList(favoriteList); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## createUserFavoriteList example for exporting from backend code ```javascript import { favoriteList } from 'wix-dashboard-management.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedCreateUserFavoriteList = elevate(favoriteList.createUserFavoriteList); export const createUserFavoriteList = webMethod( Permissions.Anyone, async (favoriteList) => { try { const result = await elevatedCreateUserFavoriteList(favoriteList); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---