GET: Get Order Status
Use this API to View the Order Status of an Order on the T6 System
Resource URL
<https://t6apilive.azurewebsites.net/api/v2/Order/GetOrderStatus/<T6 OrderID>
Use the following Header Parameters
Content-Type
: application/jsonAuthorization: bearer <Oauth2 access token>
Sample Order: https://t6apilive.azurewebsites.net/api/v2/Order/GetOrderStatus/384690
Response:
200 OK
{
"id": 384690,
"customerId": 371,
"clientOrderId": "TEST13.2",
"quantity": 1,
"shipTracking": "9400111899223238477354",
"carrier": "USPS",
"updateDate": "2019-12-06T13:58:09.687",
"orderStatus": "Shipped",
"orderItemsStatus": [
{
"id": 526991,
"statusId": 9,
"status": "Shipped",
"name": "Art Test",
"styleId": 130,
"sizeName": "XL",
"isMissingArt": false,
"code": "HOODIE- 130",
"quantity": 1,
"weight": 527.3100,
"onHold": false,
"shipTracking": "9400111899223238477354",
"updateDate": "0001-01-01T00:00:00"
}
]
}
Â