OnTime API: Updating the Status of an Order

The following endpoint should be used when updating the status for an order:
REST API:    POST  /api/order/updateStatus
The status levels that can be applied to an order are as follows:
0 = Entered
1 = Submitted
2 = In Transit
3 = Completed
4 = Canceled
5 = Canceled (Billable)
6 = Assigned
7 = Assigned (In Transit)
8 = Unassigned
9 = Quoted
The status level (i.e. the detail parameter) and relative order ID or tracking number should be used as parameters within the URL of the request:
/api/order/updateStatus?trackingNumber=1000456&detail=3
Optionally, a status description and a date can be included:
/api/order/updateStatus?trackingNumber=1000456&detail=3&label=Arrived%20at%20Warehouse&date=2019-04-09T19:00:00
If successful, a value of True will be returned. Otherwise, a value of False will be returned.