创建多箱中转出库单附件


POST http://openapi.ck1info.com/v1/batchOutboundOrder/labels
接口说明: 创建多箱中转出库单附件
Http 200 - 提交成功
Http 400 - 提交的数据有误,请检查

输入参数

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

长度: 0 ~ 50

必须

第三方单号(唯一)

ORD123456789

BatchOutboundOrderLabelInfos Collection of BatchOutboundOrderLabelInfo

None.

必须

批量标签信息

输入参数的json形式
{
  "CustomerOrderNo": "sample string 1",
  "BatchOutboundOrderLabelInfos": [
    {
      "FromBarcode": "sample string 1",
      "ToBarcode": "sample string 2",
      "Quantity": 3,
      "LabelPdfFromBase64": "sample string 4",
      "BatchOutboundOrderLabelType": "BOX"
    },
    {
      "FromBarcode": "sample string 1",
      "ToBarcode": "sample string 2",
      "Quantity": 3,
      "LabelPdfFromBase64": "sample string 4",
      "BatchOutboundOrderLabelType": "BOX"
    }
  ]
}

返回结果

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

None.

第三方单号

Success boolean

None.

是否成功

Message string

None.

报错信息

返回结果的json形式
{
  "CustomerOrderNo": "sample string 1",
  "Success": true,
  "Message": "sample string 3"
}