Ordoro · Schema

Get Order Counts Response Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
all integer
awaiting_fulfillment integer
cancelled integer
dropshipment_requested integer
unprinted_shipped integer
shipped integer
View JSON Schema on GitHub

JSON Schema

ordoro-order_counts-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-order_counts-schema.json",
  "title": "Get Order Counts Response Schema",
  "type": "object",
  "properties": {
    "all": {
      "type": "integer"
    },
    "awaiting_fulfillment": {
      "type": "integer"
    },
    "cancelled": {
      "type": "integer"
    },
    "dropshipment_requested": {
      "type": "integer"
    },
    "unprinted_shipped": {
      "type": "integer"
    },
    "shipped": {
      "type": "integer"
    }
  },
  "required": [
    "all",
    "awaiting_fulfillment",
    "cancelled",
    "dropshipment_requested",
    "unprinted_shipped",
    "shipped"
  ],
  "additionalProperties": false
}