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 Manifest Result

POST
get/manifest/result/
Call this API to get the Manifest 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": "M-123-25122112"
}

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/manifest/result/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reference_num": "M-123-25122112"
}'

Responses

๐ŸŸข200ๆˆๅŠŸๅ“ๅบ”-ๆ•ฐ็ป„
application/json
Body

Example
{
    "code": 200,
    "success": true,
    "detail": "success",
    "data": {
        "reference_num": "M-123-25122113",
        "mawb_no": "123-25122113",
        "status": "Success",
        "message": "ๆˆๅŠŸ",
        "bags": "1",
        "items": "1",
        "bag_list": [
            {
                "bag_num": "BP2602420948123",
                "bag_type": "1",
                "code": "200",
                "message": "ๆ— ้œ€ๆŽจ้€manifest,ๅทฒ้™้ป˜ๅค„็†",
                "customerOrderNoS": [
                    "HGE260108000005V",
                    "HGE260108000005V"
                ]
            }
        ]
    }
}
๐Ÿ”ด500Internal Server Error
๐ŸŸ 401Unauthorized
๐ŸŸ 400Bad Request
๐ŸŸ 404Not Found
Previous
Manifest
Next
Update Flight info