Ordoro · Schema

cart_wayfair_vendor_config

Wayfair configuration information

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
client_id string
client_secret string
locations array
dry_run boolean
View JSON Schema on GitHub

JSON Schema

ordoro-cart_wayfair_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_wayfair_vendor_config-schema.json",
  "title": "cart_wayfair_vendor_config",
  "type": "object",
  "definitions": {
    "required_to_create": {
      "required": [
        "client_id",
        "client_secret"
      ]
    },
    "required_in_response": {
      "required": [
        "client_id",
        "client_secret",
        "locations",
        "dry_run"
      ]
    }
  },
  "description": "Wayfair configuration information",
  "properties": {
    "client_id": {
      "type": "string"
    },
    "client_secret": {
      "type": "string"
    },
    "locations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    },
    "dry_run": {
      "type": "boolean"
    }
  }
}