Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 1.98 KB

list-merchant-custom-attributes-response.md

File metadata and controls

56 lines (47 loc) · 1.98 KB

List Merchant Custom Attributes Response

Represents a ListMerchantCustomAttributes response. Either custom_attributes, an empty object, or errors is present in the response. If additional results are available, the cursor field is also present along with custom_attributes.

Structure

List Merchant Custom Attributes Response

Fields

Name Type Tags Description
custom_attributes List Custom Attribute Optional The retrieved custom attributes. If with_definitions was set to true in the request,
the custom attribute definition is returned in the definition field of each custom attribute.
If no custom attributes are found, Square returns an empty object ({}).
cursor str Optional The cursor to use in your next call to this endpoint to retrieve the next page of results
for your original request. This field is present only if the request succeeded and additional
results are available. For more information, see Pagination.
errors List Error Optional Any errors that occurred during the request.

Example (as JSON)

{
  "custom_attributes": [
    {
      "key": "key8",
      "value": {
        "key1": "val1",
        "key2": "val2"
      },
      "version": 180,
      "visibility": "VISIBILITY_HIDDEN",
      "definition": {
        "key": "key0",
        "schema": {
          "key1": "val1",
          "key2": "val2"
        },
        "name": "name0",
        "description": "description0",
        "visibility": "VISIBILITY_HIDDEN"
      }
    }
  ],
  "cursor": "cursor6",
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}