Get BatchOutboundOrder Details


GET http://openapi.ck1info.com/v1/batchOutboundOrder/{CustomerOrderNo}
Description: Get BbatchOutboundOrder details of success or fail
Http 200 - Ok
Http 404 - CustomerOrderNo not found

Request

URI Parameters
NameDataTypeAnnotationRequiredDescriptionExample
CustomerOrderNo string

None.

Required

Response

NameDataTypeAnnotationRequiredDescriptionExample
CustomerOrderNo string

None.

BoxDetails Collection of BoxDetail

None.

PalletDetails Collection of PalletDetail

None.

Remark string

None.

Response in JSON
{
  "CustomerOrderNo": "sample string 1",
  "BoxDetails": [
    {
      "BoxNo": "sample string 1",
      "Weight": "sample string 2",
      "Size": "sample string 3",
      "PalletNo": "sample string 4",
      "SkuDetails": [
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        },
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        }
      ]
    },
    {
      "BoxNo": "sample string 1",
      "Weight": "sample string 2",
      "Size": "sample string 3",
      "PalletNo": "sample string 4",
      "SkuDetails": [
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        },
        {
          "StorageNo": "sample string 1",
          "Quantity": 2
        }
      ]
    }
  ],
  "PalletDetails": [
    {
      "PalletNo": "sample string 1",
      "Weight": "sample string 2",
      "Size": "sample string 3",
      "BoxNos": [
        "sample string 1",
        "sample string 2"
      ]
    },
    {
      "PalletNo": "sample string 1",
      "Weight": "sample string 2",
      "Size": "sample string 3",
      "BoxNos": [
        "sample string 1",
        "sample string 2"
      ]
    }
  ],
  "Remark": "sample string 2"
}