Ordoro · Schema

cart_square_vendor_config

Square configuration information

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
access_token string
refresh_token string
merchant_id string
locations array
View JSON Schema on GitHub

JSON Schema

ordoro-cart_square_vendor_config-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-cart_square_vendor_config-schema.json",
  "title": "cart_square_vendor_config",
  "type": "object",
  "definitions": {
    "required_to_create": {
      "required": [
        "access_token",
        "refresh_token",
        "merchant_id"
      ]
    },
    "required_in_response": {
      "required": [
        "access_token",
        "refresh_token",
        "merchant_id",
        "locations"
      ]
    }
  },
  "description": "Square configuration information",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "refresh_token": {
      "type": "string"
    },
    "merchant_id": {
      "type": "string"
    },
    "locations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    }
  }
}