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

Get Scan Form Result

POST
get/scanform/result/
Call this API to obtain the Scan Form execution result.
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
{
    "reference_num": "TR 203981082301"
}

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 'get/scanform/result/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reference_num": "TR 203981082301"
}'

Responses

🟢200成功响应-数组
application/json
Body

Example
{
    "code": 200,
    "success": true,
    "detail": "success",
    "data": {
        "reference_num": "TR20250112-2",
        "mawb_no": "",
        "handover_num": "TR20250112-2",
        "status": "Success",
        "message": "OK",
        "order_nums": [
            {
                "order_num": "P10001-20260107195442",
                "code": "200",
                "message": "OK"
            }
        ]
    }
}
🔴500Internal Server Error
🟠401Unauthorized
🟠400Bad Request
🟠404Not Found
Previous
Scan Form
Next
Manifest