Ordoro · Schema

cart_woocommerce_vendor_config

WooCommerce configuration information

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
url string
consumer_key string
consumer_secret string
View JSON Schema on GitHub

JSON Schema

ordoro-cart_woocommerce_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_woocommerce_vendor_config-schema.json",
  "title": "cart_woocommerce_vendor_config",
  "type": "object",
  "definitions": {
    "required_to_create": {
      "required": [
        "url",
        "consumer_key",
        "consumer_secret"
      ]
    },
    "required_in_response": {
      "required": [
        "url",
        "consumer_key",
        "consumer_secret"
      ]
    }
  },
  "description": "WooCommerce configuration information",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri"
    },
    "consumer_key": {
      "type": "string"
    },
    "consumer_secret": {
      "type": "string"
    }
  }
}