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

Query Charges

POST
query/charge/
Query the waybill billing information.
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": "HGE260107000060V"
}

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 'query/charge/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "num_type": 2,
    "num": "HGE260107000060V"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 200,
    "success": true,
    "detail": "string",
    "data": {
        "customer_order_num": "string",
        "order_num": "string",
        "tracking_num": "string",
        "service_code": "string",
        "consignee_country": "string",
        "consignee_postcode": "string",
        "charge_weight": "string",
        "parcel_info": [
            {
                "parcel_num": "string",
                "parcel_weight": "string",
                "parcel_volumetric_weight": "string",
                "parcel_length": "string",
                "parcel_width": "string",
                "parcel_height": "string",
                "store_weight": "string",
                "store_volumetric_weight": "string",
                "store_length": "string",
                "store_width": "string",
                "store_height": "string"
            }
        ],
        "charge_info": [
            {
                "charge_name": "string",
                "charge_rate": "string",
                "currency_type": "string",
                "charge_time": "string"
            }
        ]
    }
}
🔴500Internal Server Error
🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
Previous
Get POD
Next
Query Order Track