Create BatchOutbound Order Labels


POST http://openapi.ck1info.com/v1/batchOutboundOrder/labels
Description: Create BatchOutbound Order Labels
Http 201 - Ok
Http 200 - Ok, not changed
Http 400 - Invalid data, Please check

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
CustomerOrderNo string

String length: between 0 and 50

Required

ORD123456789

BatchOutboundOrderLabelInfos Collection of BatchOutboundOrderLabelInfo

None.

Required

Request in 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"
    }
  ]
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
CustomerOrderNo string

None.

Success boolean

None.

Message string

None.

Response in JSON
{
  "CustomerOrderNo": "sample string 1",
  "Success": true,
  "Message": "sample string 3"
}