Ordoro · Schema

Create a Manufacturing Order

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
reference_id string
warehouse_id integer
manufacturer_notes object
internal_notes object
lines array
View JSON Schema on GitHub

JSON Schema

ordoro-post_manufacturing_order-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-schema.json",
  "title": "Create a Manufacturing Order",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "reference_id": {
      "type": "string"
    },
    "warehouse_id": {
      "type": "integer"
    },
    "manufacturer_notes": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "internal_notes": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "lines": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "sku": {
            "type": "string"
          },
          "requested_quantity": {
            "type": "number"
          },
          "manufacturer_notes": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "internal_notes": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "sku"
        ]
      }
    }
  },
  "required": [
    "reference_id"
  ]
}