> 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 # DeleteUserFavorite # Package: dashboard # Namespace: DashboardFavoritesService # Method link: https://dev.wix.com/docs/api-reference/business-management/dashboard/dashboard-favorite-list/delete-user-favorite.md ## Permission Scopes: Manage Dashboard: SCOPE.DC-OS.MANAGE_DASHBOARD ## Introduction Deletes the specified favorite page from the current Wix user's list of favorite dashboard pages. If no favorites remain in the list, it is deleted. --- ## REST API ### Schema ``` Method: deleteUserFavorite Description: Deletes the specified favorite page from the current Wix user's list of favorite dashboard pages. If no favorites remain in the list, it is deleted. URL: https://www.wixapis.com/dashboard/v1/user-favorite-list/delete-favorite/{favoriteId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: favoriteId Method parameters: param name: favoriteId | type: none | required: true Return type: DeleteUserFavoriteResponse - 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 ### Delete Page from User Favorite List ```curl curl -X DELETE \ 'https://www.wixapis.com/dashboard/v1/user-favorite-list/delete-favorite/cc5a0ad9-dbc8-4139-b4e2-3c59678a7d77' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.dashboard.DashboardFavoritesService.deleteUserFavorite(favoriteId) Description: Deletes the specified favorite page from the current Wix user's list of favorite dashboard pages. If no favorites remain in the list, it is deleted. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: favoriteId Method parameters: param name: favoriteId | type: string | description: GUID of the favorite page to delete from the list. | required: true Return type: PROMISE - 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: 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 ### deleteUserFavorite ```javascript import { favoriteList } from '@wix/dashboard-management'; async function deleteUserFavorite(favoriteId) { const response = await favoriteList.deleteUserFavorite(favoriteId); }; ``` ### deleteUserFavorite (with elevated permissions) ```javascript import { favoriteList } from '@wix/dashboard-management'; import { auth } from '@wix/essentials'; async function myDeleteUserFavoriteMethod(favoriteId) { const elevatedDeleteUserFavorite = auth.elevate(favoriteList.deleteUserFavorite); const response = await elevatedDeleteUserFavorite(favoriteId); } ``` ### deleteUserFavorite (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 deleteUserFavorite(favoriteId) { const response = await myWixClient.favoriteList.deleteUserFavorite(favoriteId); }; ``` ---