Ordoro · Schema

cart_magento_v2_vendor_config

Magento V2 configuration information

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
url string
username string
password string
store_ids array
View JSON Schema on GitHub

JSON Schema

ordoro-cart_magento_v2_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_magento_v2_vendor_config-schema.json",
  "title": "cart_magento_v2_vendor_config",
  "type": "object",
  "definitions": {
    "required_to_create": {
      "required": [
        "url",
        "username",
        "password"
      ]
    },
    "required_in_response": {
      "required": [
        "url",
        "username",
        "password",
        "store_ids"
      ]
    }
  },
  "description": "Magento V2 configuration information",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri"
    },
    "username": {
      "type": "string"
    },
    "password": {
      "type": "string"
    },
    "store_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}