Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.42 KB

bulk-delete-merchant-custom-attributes-response.md

File metadata and controls

48 lines (39 loc) · 1.42 KB

Bulk Delete Merchant Custom Attributes Response

Represents a BulkDeleteMerchantCustomAttributes response, which contains a map of responses that each corresponds to an individual delete request.

Structure

Bulk Delete Merchant Custom Attributes Response

Fields

Name Type Tags Description
values Dict Str Bulk Delete Merchant Custom Attributes Response Merchant Custom Attribute Delete Response Required A map of responses that correspond to individual delete requests. Each response has the
same key as the corresponding request.
errors List Error Optional Any errors that occurred during the request.

Example (as JSON)

{
  "values": {
    "id1": {
      "errors": [],
      "merchant_id": "DM7VKY8Q63GNP"
    },
    "id2": {
      "errors": [],
      "merchant_id": "DM7VKY8Q63GNP"
    }
  },
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}