> 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 # BulkDeleteBadgeAssignments # Package: activity # Namespace: BadgeAssignments # Method link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/activity/badge-assignments/bulk-delete-badge-assignments.md ## Permission Scopes: Manage Badges: SCOPE.DC-MEMBERS.MANAGE-BADGES ## Introduction Deletes multiple badge assignments, removing badges from the specified members. When a badge assignment is deleted, the member loses any permissions or privileges associated with that badge. This action can't be undone. To delete a single assignment, call [Delete Badge Assignment](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/badge-assignments/delete-badge-assignment.md). --- ## REST API ### Schema ``` Method: bulkDeleteBadgeAssignments Description: Deletes multiple badge assignments, removing badges from the specified members. When a badge assignment is deleted, the member loses any permissions or privileges associated with that badge. This action can't be undone. To delete a single assignment, call [Delete Badge Assignment](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/badge-assignments/delete-badge-assignment.md). URL: https://www.wixapis.com/v4/bulk/badge-assignments/delete Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: badgeAssignmentIds Method parameters: param name: badgeAssignmentIds | type: array | description: GUID of the badge assignments to delete. | required: true Return type: BulkDeleteBadgeAssignmentsResponse - name: results | type: array | description: Results of the bulk delete operation. - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single update operation - name: id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: item | type: BadgeAssignment | description: Only exists if `returnEntity` was set to true in the request - name: id | type: string | description: Badge assignment GUID. - name: badgeId | type: string | description: GUID of the badge being assigned to the member. Call the [Badges API](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/badges-v4/introduction.md) to retrieve available badges. - name: memberId | type: string | description: GUID of the member receiving the badge assignment. Call the [Members API](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/members/introduction.md) to retrieve member information. - name: createdDate | type: string | description: Date and time the badge assignment was created. - name: updatedDate | type: string | description: Date and time the badge assignment was updated. - name: tags | type: Tags | description: Tags allow you to classify ticket reservations. Learn more about [tags](https://dev.wix.com/docs/rest/business-management/tags/introduction.md). - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs - name: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: extendedFields | type: ExtendedFields | description: Extended fields allow you to add custom properties beyond the standard reservation data. Learn more about [extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md). - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata about the bulk operation. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Bulk Delete Badge Assignments ```curl curl -X POST \ https://www.wixapis.com/badges/v4/bulk/assignments/delete \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "badgeAssignmentIds": [ "3ed982d6-2f45-41b8-a6f8-fdae05c3ea43", "921cac5d-acc6-45ef-9b55-99f8954f6f86" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.activity.BadgeAssignments.bulkDeleteBadgeAssignments(badgeAssignmentIds) Description: Deletes multiple badge assignments, removing badges from the specified members. When a badge assignment is deleted, the member loses any permissions or privileges associated with that badge. This action can't be undone. To delete a single assignment, call [Delete Badge Assignment](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/badge-assignments/delete-badge-assignment.md). # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: badgeAssignmentIds Method parameters: param name: badgeAssignmentIds | type: array | description: GUID of the badge assignments to delete. | required: true Return type: PROMISE - name: results | type: array | description: Results of the bulk delete operation. - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single update operation - name: _id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: item | type: BadgeAssignment | description: Only exists if `returnEntity` was set to true in the request - name: _id | type: string | description: Badge assignment GUID. - name: badgeId | type: string | description: GUID of the badge being assigned to the member. Call the [Badges API](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/badges-v4/introduction.md) to retrieve available badges. - name: memberId | type: string | description: GUID of the member receiving the badge assignment. Call the [Members API](https://dev.wix.com/docs/api-reference/crm/members-contacts/members/members/introduction.md) to retrieve member information. - name: _createdDate | type: Date | description: Date and time the badge assignment was created. - name: _updatedDate | type: Date | description: Date and time the badge assignment was updated. - name: tags | type: Tags | description: Tags allow you to classify ticket reservations. Learn more about [tags](https://dev.wix.com/docs/rest/business-management/tags/introduction.md). - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs - name: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: extendedFields | type: ExtendedFields | description: Extended fields allow you to add custom properties beyond the standard reservation data. Learn more about [extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md). - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata about the bulk operation. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### bulkDeleteBadgeAssignments ```javascript import { badgeAssignments } from '@wix/members'; async function bulkDeleteBadgeAssignments(badgeAssignmentIds) { const response = await badgeAssignments.bulkDeleteBadgeAssignments(badgeAssignmentIds); }; ``` ### bulkDeleteBadgeAssignments (with elevated permissions) ```javascript import { badgeAssignments } from '@wix/members'; import { auth } from '@wix/essentials'; async function myBulkDeleteBadgeAssignmentsMethod(badgeAssignmentIds) { const elevatedBulkDeleteBadgeAssignments = auth.elevate(badgeAssignments.bulkDeleteBadgeAssignments); const response = await elevatedBulkDeleteBadgeAssignments(badgeAssignmentIds); } ``` ### bulkDeleteBadgeAssignments (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 { badgeAssignments } from '@wix/members'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { badgeAssignments }, // Include the auth strategy and host as relevant }); async function bulkDeleteBadgeAssignments(badgeAssignmentIds) { const response = await myWixClient.badgeAssignments.bulkDeleteBadgeAssignments(badgeAssignmentIds); }; ``` ---