> 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

# BulkDeleteAttributeValues

# Package: attributes

# Namespace: AttributeValuesService

# Method link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/resources/attributes/attribute-value/bulk-delete-attribute-values.md

## Permission Scopes:
Manage_Wix_Attributes_Forms_submissions: SCOPE.ATTRIBUTES.MANAGE

## Introduction

Deletes the values of the given attribute definitions for an entity.

Each entry in `attribute_definition_ids` removes that attribute's value from the entity. IDs with no value for
this entity are reported as a no-op success.

---

## REST API

### Schema

```
 Method: bulkDeleteAttributeValues
 Description: Deletes the values of the given attribute definitions for an entity.  Each entry in `attribute_definition_ids` removes that attribute's value from the entity. GUIDs with no value for this entity are reported as a no-op success.
 URL: https://www.wixapis.com/_api/attributes/v1/attribute-values/{entityId}/bulk-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:  attributeDefinitionIds
 Method parameters: 
   param name: attributeDefinitionIds | type: array<attributeDefinitionIds> | description: IDs of the attribute definitions whose values should be removed from this entity. | required: true | validation: minItems 1, maxItems 50, format GUID
 Return type: BulkDeleteAttributeValuesResponse
  - name: results | type: array<BulkDeleteAttributeValueResult> | description: Delete results, one per requested attribute definition, in request order.  | validation: minItems 1, maxItems 50
     - name: itemMetadata | type: ItemMetadata | description: Per-item metadata (deleted value id, original index, success).  
        - name: id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed.  | validation: format GUID
        - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items.  | validation: minimum 0
        - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned.  
        - 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: bulkActionMetadata | type: BulkActionMetadata | description: Bulk action metadata (success and failure counts).  
     - name: totalSuccesses | type: integer | description: Number of items that were successfully processed.  | validation: minimum 0
     - name: totalFailures | type: integer | description: Number of items that couldn't be processed.  | validation: minimum 0
     - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded.  | validation: minimum 0


```

### Examples

### Delete attribute values from an entity.
```curl
curl -X POST \
'https://www.wixapis.com/attributes/v1/attribute-values/5a9b3e88-1f6c-4f3b-9c7e-08e2f3b5a1b2/bulk-delete' \
-H 'Authorization: <AUTH>' \
-H 'Content-Type: application/json' \
-d '{
  "attributeDefinitionIds": [
    "d7a341c4-196b-46e7-813c-2b0fc1847ec6"
  ]
}'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.bookings.attributeValue.bulkDeleteAttributeValues(entityId, attributeDefinitionIds)
 Description: Deletes the values of the given attribute definitions for an entity.  Each entry in `attribute_definition_ids` removes that attribute's value from the entity. GUIDs with no value for this entity are reported as a no-op success.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  entityId, attributeDefinitionIds
 Method parameters: 
   param name: attributeDefinitionIds | type: array<array> | description: IDs of the attribute definitions whose values should be removed from this entity. | required: true | validation: minItems 1, maxItems 50, format GUID
   param name: entityId | type: string | description: GUID of the entity whose attribute values to delete. | required: true | validation: format GUID
 Return type: PROMISE<BulkDeleteAttributeValuesResponse>
  - name: results | type: array<BulkDeleteAttributeValueResult> | description: Delete results, one per requested attribute definition, in request order.  | validation: minItems 1, maxItems 50
     - name: itemMetadata | type: ItemMetadata | description: Per-item metadata (deleted value id, original index, success).  
        - name: _id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed.  | validation: format GUID
        - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items.  | validation: minimum 0
        - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned.  
        - 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: bulkActionMetadata | type: BulkActionMetadata | description: Bulk action metadata (success and failure counts).  
     - name: totalSuccesses | type: integer | description: Number of items that were successfully processed.  | validation: minimum 0
     - name: totalFailures | type: integer | description: Number of items that couldn't be processed.  | validation: minimum 0
     - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded.  | validation: minimum 0


```

### Examples

### Delete attribute values from an entity
```javascript
import { attributeValue } from "@wix/bookings";

const entityId = "5a9b3e88-1f6c-4f3b-9c7e-08e2f3b5a1b2";
const attributeDefinitionIds = ["d7a341c4-196b-46e7-813c-2b0fc1847ec6"];

async function bulkDeleteAttributeValues() {
  const response = await attributeValue.bulkDeleteAttributeValues(entityId, attributeDefinitionIds);
}

/* Promise resolves to:
 * {
 *   "results": [
 *     { "itemMetadata": { "id": "b1e6f0a2-3c4d-4e5f-9a8b-1c2d3e4f5a6b", "originalIndex": 0, "success": true } }
 *   ],
 *   "bulkActionMetadata": { "totalSuccesses": 1, "totalFailures": 0 }
 * }
 */

```

### bulkDeleteAttributeValues (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 { attributeValue } from '@wix/bookings';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { attributeValue },
  // Include the auth strategy and host as relevant
});


async function bulkDeleteAttributeValues(entityId,attributeDefinitionIds) {
  const response = await myWixClient.attributeValue.bulkDeleteAttributeValues(entityId,attributeDefinitionIds);
};
```

---