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

« Previous Version 3 Next »

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

Resource URL

Testing: https://t6apidevelopment.azurewebsites.net/api/v2/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/v2/Order/GetOrderStatus/384690

Response:

200 OK

{
    "id": 384690,
    "customerId": 371,
    "clientOrderId": "TEST13.2",
    "quantity": 1,
    "shipTracking": "9400111899223238477354",
    "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"
        }
    ]
}

  • No labels