Skip to content

Get Tracking No

Request Method

http
POST /api/create-barcode
FieldDescription
Content-Typeapplication/json
AuthorizationBearer <token>

Parameter

FieldMandatoryTypeDescriptionLength
BarcodeYStringCustom Tracking NumMax 50 Char
LabelTypeYStringThis field identify the label type, currently only CN23 is available.Max 10 Char
OriginYStringThis field refers to the originating country. Eg. SG for Singapore, TW for TaiwanMax 2 Char
DestinationYStringThis field refers to the destinating country. Eg. TW for Taiwan, JP for JapanMax 2 Char

Request

json
{
  "Barcode": "xxxxxxx",
  "LabelType": "CN23",
  "Origin": "SG",
  "Destination": "XX"
}

Response(Success)

json
{
  "Code": 0,
  "Message": "Success",
  "Data": {
    "Barcode": "CY180000662SG"
  }
}

Response(Fail)

json
{
  "Code": 1,
  "Message": "Parcel not found",
  "Data": []
}