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

Update Flight info

POST
update/flight/info/
Call this API to update the MAWB (Master Air Waybill) node/status for uploaded Scan Form or Manifest data.
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
{
    "master_air_waybill_number": "123-25122112",
    "ata": "2025-09-09 18:13:00",
    "atd": "2025-09-09 12:25:00"
}

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 'update/flight/info/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "master_air_waybill_number": "123-25122112",
    "ata": "2025-09-09 18:13:00",
    "atd": "2025-09-09 12:25:00"
}'

Responses

🟢200成功响应-对象
application/json
Body

Example
{
    "code": 200,
    "success": true,
    "detail": "success",
    "data": {
        "master_air_waybill_number": "123-25122112",
        "atd": "2025-09-09T12:25:00",
        "ata": "2025-09-09T18:13:00"
    }
}
🟠401Unauthorized
🔴500Internal Server Error
🟠400Bad Request
🟠404Not Found
Previous
Get Manifest Result
Next
Waybill Tracking Nodes and Status Description