> 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 # UpdateUserFavoriteList # Package: dashboard # Namespace: DashboardFavoritesService # Method link: https://dev.wix.com/docs/api-reference/business-management/dashboard/dashboard-favorite-list/update-user-favorite-list.md ## Permission Scopes: Manage Dashboard: SCOPE.DC-OS.MANAGE_DASHBOARD ## Introduction Updates the current Wix user's list of favorite dashboard pages. Make sure to include the current revision number when calling this method. > **Note:** > Updating the list replaces the favorite pages it contains with those specified in the method call. --- ## REST API ### Schema ``` Method: updateUserFavoriteList Description: Updates the current Wix user's list of favorite dashboard pages. Make sure to include the current revision number when calling this method. > **Note:** > Updating the list replaces the favorite pages it contains with those specified in the method call. URL: https://www.wixapis.com/dashboard/v1/user-favorite-list/{favoriteList.id} Method: PATCH # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: favoriteList, favoriteList.id, favoriteList.revision Method parameters: param name: favoriteList | type: DashboardFavoriteList | description: List of favorite dashboard pages. | required: true - name: id | type: string | description: Dashboard favorite list GUID. Automatically generated by Wix. | required: true - 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. | required: true - 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. Return type: UpdateUserFavoriteListResponse - name: favoriteList | type: DashboardFavoriteList | description: Updated 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 ### Update User Favorite List ```curl curl -X PATCH \ 'https://www.wixapis.com/dashboard/v1/user-favorite-list/c959d429-3136-41cb-9478-6acbd064e0fa' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "favoriteList": { "revision": 1, "favorites": [ { "id":"7d228ce4-f0c6-4758-be72-beea48f83dd1", "pageId":"3893d33b-24a1-474b-80b0-dd7c32e20bfb", "title":"My Updated Page" }, { "id":"b38a93a2-89f4-4c4f-8786-618f69cde012", "pageId":"81f1ee0a-92b7-42f7-89cb-8b0f96146dcf", "relativeUrl":"/route", "title":"Another Page" } ] } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.dashboard.DashboardFavoritesService.updateUserFavoriteList(_id, favoriteList) Description: Updates the current Wix user's list of favorite dashboard pages. Make sure to include the current revision number when calling this method. > **Note:** > Updating the list replaces the favorite pages it contains with those specified in the method call. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: favoriteList, _id, favoriteList.revision Method parameters: param name: _id | type: string | description: Dashboard favorite list GUID. Automatically generated by Wix. | required: true param name: favoriteList | type: UpdateUserFavoriteList | description: List of favorite dashboard pages. | required: true - 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. | required: true - 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. Return type: PROMISE - 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 ### updateUserFavoriteList ```javascript import { favoriteList } from '@wix/dashboard-management'; async function updateUserFavoriteList(_id,favoriteList) { const response = await favoriteList.updateUserFavoriteList(_id,favoriteList); }; ``` ### updateUserFavoriteList (with elevated permissions) ```javascript import { favoriteList } from '@wix/dashboard-management'; import { auth } from '@wix/essentials'; async function myUpdateUserFavoriteListMethod(_id,favoriteList) { const elevatedUpdateUserFavoriteList = auth.elevate(favoriteList.updateUserFavoriteList); const response = await elevatedUpdateUserFavoriteList(_id,favoriteList); } ``` ### updateUserFavoriteList (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 updateUserFavoriteList(_id,favoriteList) { const response = await myWixClient.favoriteList.updateUserFavoriteList(_id,favoriteList); }; ``` ---