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

PCCC Query

POST
query/pccc/
This interface can verify the correctness of a Korean Personal Clearance Code (PCCC).
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
{
    "pccc": "P972150029777",
    "name": "김하성",
    "phone": "01075654552",
    "first_name": "allen",
    "last_name": "gned",
    "postcode": "90529"
}

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 'query/pccc/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pccc": "P972150029777",
    "name": "김하성",
    "phone": "01075654552",
    "first_name": "allen",
    "last_name": "gned",
    "postcode": "90529"
}'

Responses

🟢200成功
application/json
Body

Examples
{
    "code": 200,
    "success": true,
    "detail": "success"
}
🟠401Unauthorized
🔴500Internal Server Error
🟠400Bad Request
🟠404Not Found
Previous
Get Service List
Next
Create Order