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

Get POD

POST
get/pod/
Call this API to retrieve Proof of Delivery (POD). Only successfully delivered shipments will have a POD. If the last-mile carrier does not provide an official POD, our standard POD will be returned.
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": "HGE2511250000060"
}

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

Responses

🟢200OK
application/json
Body

Examples
{
    "code": 200,
    "success": true,
    "detail": "success",
    "data": {
        "customer_order_num": "P10018-20251125203723",
        "order_num": "HGE2511250000060",
        "tracking_num": "519944016502",
        "pod_url": "",
        "pod_base64": "base64string"
    }
}
🔴500Internal Server Error
🟠401Unauthorized
🟠400Bad Request
🟠404Not Found
Previous
Update Label
Next
Query Charges