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

Intercept Order

POST
intercept/order/
Call this API to request an order interception. Interception is not supported once warehouse processing has started.
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": "HGE2601060000255"
}

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

Responses

🟢200OK
application/json
Body

Examples
{
    "code": 200,
    "success": true,
    "detail": "Applying for interception",
    "data": {
        "customer_order_num": "P10006-20260106165003",
        "order_num": "HGE260106000021H",
        "tracking_num": ""
    }
}
🔴500Internal Server Error
🟠401Unauthorized
🟠400Bad Request
🟠404Not Found
Previous
Cancel Order
Next
Cancel Intercept