Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1013 Bytes

bulk-delete-location-custom-attributes-request.md

File metadata and controls

36 lines (27 loc) · 1013 Bytes

Bulk Delete Location Custom Attributes Request

Represents a BulkDeleteLocationCustomAttributes request.

Structure

BulkDeleteLocationCustomAttributesRequest

Fields

Name Type Tags Description
Values IDictionary<string, BulkDeleteLocationCustomAttributesRequestLocationCustomAttributeDeleteRequest> Required The data used to update the CustomAttribute objects.
The keys must be unique and are used to map to the corresponding response.

Example (as JSON)

{
  "values": {
    "id1": {
      "key": "bestseller",
      "location_id": "L0TBCBTB7P8RQ"
    },
    "id2": {
      "key": "bestseller",
      "location_id": "L9XMD04V3STJX"
    },
    "id3": {
      "key": "phone-number",
      "location_id": "L0TBCBTB7P8RQ"
    }
  }
}