Order Tracking History

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" } ]

Â