> 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 # DeleteBadge # Package: activity # Namespace: Badges # Method link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/activity/badges-v4/delete-badge.md ## Permission Scopes: Manage Badges: SCOPE.DC-MEMBERS.MANAGE-BADGES ## Introduction Deletes a badge. Deleting a badge will remove it from all members who currently have it assigned. --- ## REST API ### Schema ``` Method: deleteBadge Description: Deletes a badge. Deleting a badge will remove it from all members who currently have it assigned. URL: https://www.wixapis.com/badges/v4/badges/{badgeId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: badgeId Method parameters: param name: badgeId | type: none | required: true Return type: DeleteBadgeResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Badge ```curl curl -X DELETE \ 'https://www.wixapis.com/badges/v4/badges/8046df3c-7575-4098-a5ab-c91ad8f33c47' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.activity.Badges.deleteBadge(badgeId) Description: Deletes a badge. Deleting a badge will remove it from all members who currently have it assigned. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: badgeId Method parameters: param name: badgeId | type: string | description: Badge GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteBadge ```javascript import { badgesV2 } from '@wix/members'; async function deleteBadge(badgeId) { const response = await badgesV2.deleteBadge(badgeId); }; ``` ### deleteBadge (with elevated permissions) ```javascript import { badgesV2 } from '@wix/members'; import { auth } from '@wix/essentials'; async function myDeleteBadgeMethod(badgeId) { const elevatedDeleteBadge = auth.elevate(badgesV2.deleteBadge); const response = await elevatedDeleteBadge(badgeId); } ``` ### deleteBadge (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 { badgesV2 } from '@wix/members'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { badgesV2 }, // Include the auth strategy and host as relevant }); async function deleteBadge(badgeId) { const response = await myWixClient.badgesV2.deleteBadge(badgeId); }; ``` ---