Skip to content

Get Manufacturing Order

GET /api/manufacturing-order/{id}

Required privilege: Manufacturing / View

Returns a single manufacturing order with its component and output details.


Path Parameters

Parameter Type Required Description
id integer Yes Internal MO identifier

Response

{
  "data": {
    "rows": {
      "id": 55,
      "MO List Number": "MO-2024-001",
      "MO List Order Date": "2024-03-01",
      "MO List Document Status": "Open",
      "Warehouse Id": 3,
      "Warehouse Number": "WH-01",
      "Warehouse Name": "Main Distribution Center",
      "details": [
        {
          "id": 301,
          "Item Id": 55,
          "Item Number": "ITEM-A",
          "Item Description": "Widget Assembly - Type A",
          "Sub Item Id": null,
          "Sub Item Number": null,
          "MO Details Quantity": 500,
          "MO Details Order Date": "2024-03-01",
          "MO Details Start Date": "2024-03-05",
          "MO Details End Date": "2024-03-12",
          "MO Details Document Status": "Open",
          "MO Details Unique Id": null
        }
      ]
    }
  }
}

Detail Line Fields

Field Type Description
id integer Internal line ID
Item Number string Output item reference
MO Details Quantity number Quantity to produce
MO Details Order Date string | null Order date
MO Details Start Date string | null Production start date
MO Details End Date string | null Production end date (ETA)
MO Details Document Status string Line status

Errors

Status Code Description
400 ManufacturingOrderList.NotFound No MO with this ID
403 User.NotPrivileged Insufficient privilege