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

Create Order

POST
order/create/
Call this API to create a waybill.
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
{
    "customer_order_num": "",
    "service_code": "P10019",
    "shipper_info": {
        "address_num": "AD00000019"
    },
    "consignee_info": {
        "full_name": "Allen Jin Gned",
        "first_name": "Allen",
        "middle_name": "Jin",
        "last_name": "Gned",
        "company": "company_name",
        "phone": "+1 12345678",
        "mobile": "+1 102345678",
        "email": "allen@gmail.com",
        "country": "US",
        "postcode": "90001",
        "province": "CA",
        "city": "Los Angeles",
        "region": "region",
        "house_no": "13",
        "street": "street",
        "address": "453-429 E 71st St"
    },
    "parcel_list": [
        {
            "parcel_num": "53",
            "weight": 0.001,
            "length": 0.1,
            "width": 0.1,
            "height": 0.1,
            "item_list": [
                {
                    "export_declared": "书包",
                    "export_hscode": "3926 9033",
                    "export_price": 1.112,
                    "export_price_currency": "CNY",
                    "import_declared": "bag",
                    "import_hscode": "3926 9033",
                    "import_price": 1.145,
                    "import_price_currency": "USD",
                    "sku": "SKU-12124",
                    "sale_price": 1.567,
                    "sale_currency": "USD",
                    "sale_link": "https://punctual-cassava.org",
                    "qty": 1,
                    "weight": 1.678,
                    "length": 0.23,
                    "width": 2.6,
                    "height": 3.6,
                    "remark": "H-A-0001",
                    "name": "bag",
                    "desc": "书包",
                    "desc_en": "Purple",
                    "material": "niloy",
                    "uses": "",
                    "brand": "Nike",
                    "model": "B125",
                    "manufacture_Identifier_type": "FEI",
                    "manufacture_ Identifier_num": "1234578"
                }
            ]
        }
    ]
}

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 'order/create/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customer_order_num": "",
    "service_code": "P10019",
    "shipper_info": {
        "address_num": "AD00000019"
    },
    "consignee_info": {
        "full_name": "Allen Jin Gned",
        "first_name": "Allen",
        "middle_name": "Jin",
        "last_name": "Gned",
        "company": "company_name",
        "phone": "+1 12345678",
        "mobile": "+1 102345678",
        "email": "allen@gmail.com",
        "country": "US",
        "postcode": "90001",
        "province": "CA",
        "city": "Los Angeles",
        "region": "region",
        "house_no": "13",
        "street": "street",
        "address": "453-429 E 71st St"
    },
    "parcel_list": [
        {
            "parcel_num": "53",
            "weight": 0.001,
            "length": 0.1,
            "width": 0.1,
            "height": 0.1,
            "item_list": [
                {
                    "export_declared": "书包",
                    "export_hscode": "3926 9033",
                    "export_price": 1.112,
                    "export_price_currency": "CNY",
                    "import_declared": "bag",
                    "import_hscode": "3926 9033",
                    "import_price": 1.145,
                    "import_price_currency": "USD",
                    "sku": "SKU-12124",
                    "sale_price": 1.567,
                    "sale_currency": "USD",
                    "sale_link": "https://punctual-cassava.org",
                    "qty": 1,
                    "weight": 1.678,
                    "length": 0.23,
                    "width": 2.6,
                    "height": 3.6,
                    "remark": "H-A-0001",
                    "name": "bag",
                    "desc": "书包",
                    "desc_en": "Purple",
                    "material": "niloy",
                    "uses": "",
                    "brand": "Nike",
                    "model": "B125",
                    "manufacture_Identifier_type": "FEI",
                    "manufacture_ Identifier_num": "1234578"
                }
            ]
        }
    ]
}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 200,
    "success": true,
    "detail": "success",
    "data": {
        "customer_order_num": "Alen-20260108001",
        "order_num": "HGE260108000029B",
        "tracking_num": "92144903630795180052180902",
        "service_code": "P10019",
        "order_remark": "",
        "create_time": "2026-01-08 22:24:44",
        "weight": "0.001"
    }
}
🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Internal Server Error
Previous
PCCC Query
Next
Print Label