Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

History Of An Order (/orders/history?order=orderid)

Example:

http://localhost:4567/api/orders/history?order=82020


Input - 1 parameter, number of order for which status is being requested

returns an array of the different tracking stations the order has been scanned at, with date and time:

[
  {
    "order-number": "82020",
    "station": "001",
    "station-desc": "FINISH BLOCKER",
    "station-date": "20191105",
    "station-time": "14470312",
    "station-message": "FINISH BLOCKER"
  },
  {
    "order-number": "82020",
    "station": "002",
    "station-desc": "EDGER",
    "station-date": "20191105",
    "station-time": "14480791",
    "station-message": "EDGER"
  },
  {
    "order-number": "82020",
    "station": "003",
    "station-desc": "COATING",
    "station-date": "20191105",
    "station-time": "14481537",
    "station-message": "COATING"
  }
]

  • No labels