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

Cancel Intercept

POST
cancel/intercept/order/
Call this API to cancel an interception request. Interceptions that have already been successfully completed cannot be canceled.
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": "HGE260107000005M"
}

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

Responses

๐ŸŸข200OK
application/json
Body

Examples
{
    "code": 200,
    "success": true,
    "detail": "Applying for interception",
    "data": {
        "customer_order_num": "P10006-20260106165258",
        "order_num": "HGE260106000023B",
        "tracking_num": ""
    }
}
๐Ÿ”ด500Internal Server Error
๐ŸŸ 401Unauthorized
๐ŸŸ 400Bad Request
๐ŸŸ 404Not Found
Previous
Intercept Order
Next
Order Confirm