GKE OPEN API
  1. Waybill Module
GKE OPEN API
  • Integration Guide
  • Basic Module
    • Get Token
    • Get Service List
    • PCCC Query
  • Waybill Module
    • Create Order
      POST
    • Print Label
      POST
    • Query Order
      POST
    • Cancel Order
      POST
    • Intercept Order
      POST
    • Cancel Intercept
      POST
    • Order Confirm
      POST
    • Update Weight
      POST
    • Update Label
      POST
    • Get POD
      POST
    • Query Charges
      POST
    • Query Order Track
      POST
  • Container & Batche
    • Create Container
    • Cancel Container
    • Print Container label
    • Scan Form
    • Get Scan Form Result
    • Manifest
    • Get Manifest Result
    • Update Flight info
  • Other materials
    • Waybill Tracking Nodes and Status Description
  1. Waybill Module

Print Label

POST
label/print/
Call this API to print the waybill label. This API can also return the last-mile delivery tracking number.
Return to guide

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Example
{
    "num_type": 2,
    "num": "HGE26010700007233"
}

Request Code Samples

Shell
HTTP
Python
Java
PHP
Go
C
C#
JavaScript
Swift
Dart
Objective-C
Ruby
OCaml
R
Request Request Example
Shell
HTTP
Python
Java
curl --location --request POST 'label/print/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "num_type": 2,
    "num": "HGE26010700007233"
}'

Responses

🟢200OK
application/json
Body

Examples
{
    "code": 200,
    "success": true,
    "detail": "success",
    "data": {
        "customer_order_num": "P10001-20260107182002",
        "order_num": "HGE260107000073I",
        "tracking_num": "800916518905",
        "label_billid": "",
        "label_base64": "base64string",
        "label_url": "",
        "delivery_carrier": "Hanjin"
    }
}
🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Internal Server Error
Previous
Create Order
Next
Query Order