Ordoro · Schema

post_cart_base

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
type string The type of cart.
name string The display name of this cart.
autosync_activities array
View JSON Schema on GitHub

JSON Schema

ordoro-post_cart_base-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-post_cart_base-schema.json",
  "title": "post_cart_base",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "type": {
      "description": "The type of cart.",
      "type": "string",
      "enum": [
        "amazon"
      ]
    },
    "name": {
      "description": "The display name of this cart.",
      "type": "string"
    },
    "autosync_activities": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "export_products_to_cart",
          "import_awd_inventory",
          "import_fba_inventory",
          "import_orders_from_cart"
        ]
      }
    }
  },
  "required": [
    "type"
  ]
}