Get Inbound Order Status


GET http://openapi.ck1info.com/v1/inboundOrders/{shipmentId}/status?idType={idType}
Description: Get order status
Http 200 - Ok
Http 404 - shipmentId not found

Request

URI Parameters
NameDataTypeAnnotationRequiredDescriptionExample
shipmentId string

None.

Required

idType IdType

Default value is PackageId

Response

NameDataTypeAnnotationRequiredDescriptionExample
Status ShipmentStatus

None.

Open

Skus Collection of SkuObject

None.

Trackings Collection of TrackingObject

None.

ShippingCosts Collection of ShippingCost

None.

LastUpdated string

None.

2016-02-23T01:25:28Z

ShipmentId string

None.

STOL201603300001

Ck1OrderId string

None.

ITST16081800001

HandleStatus InboundOrderStatus

None.

Submitted

HandleState InboundOrderState

None.

Submitted

WarehouseId string

None.

ShippingType string

None.

Weight decimal number

None.

VerifyWeight decimal number

None.

ContainerCount integer

None.

ReceivedTime date

None.

ShippingOutTime date

None.

ShippingInTime date

None.

FinishedTime date

None.

CreateTime date

None.

Response in JSON
{
  "Status": "Open",
  "Skus": [
    {
      "Sku": "sample string 1",
      "Quantity": 2,
      "Weight": 3,
      "ArrivalQuantity": 4,
      "PutawayQuantity": 5,
      "Trackings": [
        {
          "Location": "sample string 1",
          "Description": "sample string 2",
          "TrackingTime": "sample string 3"
        },
        {
          "Location": "sample string 1",
          "Description": "sample string 2",
          "TrackingTime": "sample string 3"
        }
      ]
    },
    {
      "Sku": "sample string 1",
      "Quantity": 2,
      "Weight": 3,
      "ArrivalQuantity": 4,
      "PutawayQuantity": 5,
      "Trackings": [
        {
          "Location": "sample string 1",
          "Description": "sample string 2",
          "TrackingTime": "sample string 3"
        },
        {
          "Location": "sample string 1",
          "Description": "sample string 2",
          "TrackingTime": "sample string 3"
        }
      ]
    }
  ],
  "Trackings": [
    {
      "Location": "sample string 1",
      "Description": "sample string 2",
      "TrackingTime": "sample string 3"
    },
    {
      "Location": "sample string 1",
      "Description": "sample string 2",
      "TrackingTime": "sample string 3"
    }
  ],
  "ShippingCosts": [
    {
      "Money": 1,
      "Currency": "sample string 2",
      "Type": "None",
      "Remark": "sample string 3"
    },
    {
      "Money": 1,
      "Currency": "sample string 2",
      "Type": "None",
      "Remark": "sample string 3"
    }
  ],
  "LastUpdated": "sample string 1",
  "ShipmentId": "sample string 2",
  "Ck1OrderId": "sample string 3",
  "HandleStatus": "Initial",
  "HandleState": "Init",
  "WarehouseId": "sample string 4",
  "ShippingType": "sample string 5",
  "Weight": 6,
  "VerifyWeight": 7,
  "ContainerCount": 8,
  "ReceivedTime": "2024-11-15T01:37:24.925+08:00",
  "ShippingOutTime": "2024-11-15T01:37:24.925+08:00",
  "ShippingInTime": "2024-11-15T01:37:24.925+08:00",
  "FinishedTime": "2024-11-15T01:37:24.925+08:00",
  "CreateTime": "2024-11-15T01:37:24.925+08:00"
}