GKE OPEN API
  1. Basic Module
GKE OPEN API
  • Integration Guide
  • Basic Module
    • Get Token
      POST
    • Get Service List
      GET
    • PCCC Query
      POST
  • 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
    • 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. Basic Module

Get Service List

GET
get/services/
Requesting this API will allow you to view the product and service codes available to your current account.
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

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 GET 'get/services/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 200,
    "success": true,
    "detail": "get success",
    "data": [
        {
            "service_code": "P10023",
            "service_name": "Colissimo法国配送服务"
        },
        {
            "service_code": "P10022",
            "service_name": "Swifitx美国配送服务"
        },
        {
            "service_code": "P10020",
            "service_name": "UniUni美国配送服务"
        },
        {
            "service_code": "P10016",
            "service_name": "中俄空运小包-带电"
        },
        {
            "service_code": "P10013",
            "service_name": "中韩邮政小包-带电"
        },
        {
            "service_code": "P10012",
            "service_name": "中韩空运小包-普货"
        },
        {
            "service_code": "P10011",
            "service_name": "中韩空运小包-带电"
        }
    ]
}
🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Internal Server Error
Previous
Get Token
Next
PCCC Query