Ordoro · Schema

Buy More Products Request Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
warehouse integer
quantity integer
unit_price number
discount_amount number
po_id string
View JSON Schema on GitHub

JSON Schema

ordoro-post_buy_more-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_buy_more-schema.json",
  "title": "Buy More Products Request Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "warehouse": {
      "type": "integer"
    },
    "quantity": {
      "type": "integer"
    },
    "unit_price": {
      "type": "number"
    },
    "discount_amount": {
      "type": "number"
    },
    "po_id": {
      "type": "string"
    }
  },
  "required": [
    "warehouse",
    "quantity"
  ]
}