Skip to content

Latest commit

 

History

History
93 lines (84 loc) · 2.25 KB

bulk-upsert-order-custom-attributes-request.md

File metadata and controls

93 lines (84 loc) · 2.25 KB

Bulk Upsert Order Custom Attributes Request

Represents a bulk upsert request for one or more order custom attributes.

Structure

Bulk Upsert Order Custom Attributes Request

Fields

Name Type Tags Description
values Dict Str Bulk Upsert Order Custom Attributes Request Upsert Custom Attribute Required A map of requests that correspond to individual upsert operations for custom attributes.

Example (as JSON)

{
  "values": {
    "key0": {
      "custom_attribute": {
        "key": "key2",
        "value": {
          "key1": "val1",
          "key2": "val2"
        },
        "version": 102,
        "visibility": "VISIBILITY_READ_ONLY",
        "definition": {
          "key": "key0",
          "schema": {
            "key1": "val1",
            "key2": "val2"
          },
          "name": "name0",
          "description": "description0",
          "visibility": "VISIBILITY_HIDDEN"
        }
      },
      "idempotency_key": "idempotency_key6",
      "order_id": "order_id4"
    },
    "key1": {
      "custom_attribute": {
        "key": "key2",
        "value": {
          "key1": "val1",
          "key2": "val2"
        },
        "version": 102,
        "visibility": "VISIBILITY_READ_ONLY",
        "definition": {
          "key": "key0",
          "schema": {
            "key1": "val1",
            "key2": "val2"
          },
          "name": "name0",
          "description": "description0",
          "visibility": "VISIBILITY_HIDDEN"
        }
      },
      "idempotency_key": "idempotency_key6",
      "order_id": "order_id4"
    },
    "key2": {
      "custom_attribute": {
        "key": "key2",
        "value": {
          "key1": "val1",
          "key2": "val2"
        },
        "version": 102,
        "visibility": "VISIBILITY_READ_ONLY",
        "definition": {
          "key": "key0",
          "schema": {
            "key1": "val1",
            "key2": "val2"
          },
          "name": "name0",
          "description": "description0",
          "visibility": "VISIBILITY_HIDDEN"
        }
      },
      "idempotency_key": "idempotency_key6",
      "order_id": "order_id4"
    }
  }
}