Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this API to View the Order Status of an Order on the T6 System

Resource URL

Testing: https://t6apidevelopment.azurewebsites.net/api/Order/GetOrderStatus/<T6 OrderID>

Use the following Header Parameters

  • Content-Type: application/json

  • Authorization: bearer <Oauth2 access token>

Sample Order: https://t6apidevelopment.azurewebsites.net/api/Order/GetOrderStatus/384690

Response:

200 OK

Code Block
{
    "id": 384690,
    "customerId": 371,
    "clientOrderId": "TEST13.2",
    "quantity": 1,
    "shipTracking": null,
    "updateDate": "2019-12-06T13:58:09.687",
    "orderItemsStatus": [
        {
            "id": 526991,
            "statusId": 1,
            "name": "Art Test",
            "styleId": 130,
            "sizeName": "XL",
            "isMissingArt": false,
            "code": "HOODIE- 130",
            "quantity": 1,
            "weight": 527.3100,
            "onHold": false,
            "shipTracking": null,
            "updateDate": "0001-01-01T00:00:00"
        }
    ]
}

...