Ordoro · Schema

Add a Manufacturing Order Line

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
sku string
requested_quantity number
manufacturer_notes object
internal_notes object
View JSON Schema on GitHub

JSON Schema

ordoro-post_manufacturing_order_line-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_manufacturing_order_line-schema.json",
  "title": "Add a Manufacturing Order Line",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "sku": {
      "type": "string"
    },
    "requested_quantity": {
      "type": "number"
    },
    "manufacturer_notes": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "internal_notes": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "sku"
  ]
}