查询多箱中转出库单装箱打托明细


GET http://openapi.ck1info.com/v1/batchOutboundOrder/{CustomerOrderNo}
接口说明: 查询多箱中转出库单装箱打托明细
Http 200 - 成功
Http 404 - CustomerOrderNo不存在

输入参数

URI Parameters
名称类型格式要求是否必须描述示例值
CustomerOrderNo string

None.

必须

第三方单号

返回结果

名称类型格式要求是否必须描述示例值
CustomerOrderNo string

None.

第三方系统订单号,具有唯一性

BoxDetails Collection of BoxDetail

None.

装箱明细

PalletDetails Collection of PalletDetail

None.

托盘明细

Remark string

None.

备注

返回结果的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"
}