Appearance
Get Shipping Label PDF
Request Method
http
POST /api/create-label
NOTE
This API allows user to request for a CN23 Label in PDF Format(After obtaining the data, base64 needs to be converted to PDF). Authentication is required for this API
Header
Field | Description |
---|---|
Content-Type | application/json |
Authorization | Bearer <token> |
Parameter
Field | Mandatory | Type | Description | Length |
---|---|---|---|---|
Barcode | Y | String | Wmg Tracking Num | Max 50 Char |
LabelType | Y | String | This field identify the label type, currently only CN23 is available. | Max 10 Char |
Origin | Y | String | This field refers to the originating country. Eg. SG for Singapore, TW for Taiwan | Max 2 Char |
Destination | Y | String | This field refers to the destinating country. Eg. TW for Taiwan, JP for Japan | Max 2 Char |
Direction | N | String | Pdf Direction, Eg. vertical | horizontal. Default Value: horizontal |
Request
json
{
"Barcode": "xxxxxxx",
"LabelType": "CN23",
"Origin": "SG",
"Destination": "XX"
}
json
{
"Barcode": "xxxxxxx",
"LabelType": "CN23",
"Origin": "SG",
"Destination": "XX",
"Direction": "vertical "
}
Response(Success)
json
{
"Code": 0,
"Message": "Success",
"Data": {
"Base64": "dwc45KHGVYDv8AkAesV5Z4WUad8WdWsrQDyJlud6rwq5KTdBkDDcV0mq/FDwnp9o81rdC+n2ny4IQ+WbtlioVR6nr6A1kfC7RNRmvL7xnq6bJdS3iBSNpZZH8ySQDspIAX2z2xQB6PXmfxu/5B+l/9fE3/AKCtemV5n8bv+Qfpf/XxN/6CtACQ+MPibFbRiPw6jRrGoVhFOxIAGDxLzVDwHfR6h48udQ8Ts8GuSBlt7d4zDGp2bSvJyGEYwFI6dya7C0+I3guO1hjfU0DJEisPLn4IAB/5Z1xtxf2/jT4m6bd+H0ZoLIwNNcbSm9YHaVnOQCAQQoyMnigDR8cXeq+J/F9v4EsLg2tqEV7phn5iUMxLYxkBMb"
}
}
Response(Fail)
json
{
"Code": 1,
"Message": "max size of Destination must be 2",
"Data": []
}