Ordoro · Schema

cart_etsy_vendor_config

Etsy configuration information

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
url string
oauth_access_token string
oauth_access_token_secret string
store_ids array
View JSON Schema on GitHub

JSON Schema

ordoro-cart_etsy_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_etsy_vendor_config-schema.json",
  "title": "cart_etsy_vendor_config",
  "type": "object",
  "definitions": {
    "required_to_create": {
      "required": [
        "url",
        "oauth_access_token",
        "oauth_access_token_secret"
      ]
    },
    "required_in_response": {
      "required": [
        "url",
        "oauth_access_token",
        "oauth_access_token_secret",
        "store_ids"
      ]
    }
  },
  "description": "Etsy configuration information",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri"
    },
    "oauth_access_token": {
      "type": "string"
    },
    "oauth_access_token_secret": {
      "type": "string"
    },
    "store_ids": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    }
  }
}