get box label


POST http://openapi.ck1info.com/v1/directExpressOrders/boxlabel

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
BoxNo string

None.

Required

Weight decimal number

None.

Required

Length decimal number

Decimal: 8,2

Length of Package

25

Width decimal number

Decimal: 8,2

Width of Package

10

Height decimal number

Decimal: 8,2

Height of Package

20

CloseDatetime string

None.

Required

CountryCode string

None.

Required

BoxItems Collection of BoxItem

None.

Required

Request in JSON
{
  "BoxNo": "sample string 1",
  "Weight": 2,
  "Length": 3,
  "Width": 4,
  "Height": 5,
  "CloseDatetime": "sample string 6",
  "CountryCode": "sample string 7",
  "BoxItems": [
    {
      "TrackingNumber": "sample string 1",
      "Weight": 2
    },
    {
      "TrackingNumber": "sample string 1",
      "Weight": 2
    }
  ]
}

Response

NameDataTypeAnnotationRequiredDescriptionExample
Success boolean

None.

Message string

None.

ScanNo string

None.

Label string

None.

Base64 code, for bytes, and create pdf file

Response in JSON
{
  "Success": true,
  "Message": "sample string 2",
  "ScanNo": "sample string 3",
  "Label": "sample string 4"
}