This API describes how you can get the shipping method list.

Common Parameter

Test Endpoint: https://api-dev.gcparcelservice.com/openapi/shipping-method/list

Production Endpoint: https://api.gcparcelservice.com/openapi/shipping-method/list

Method: POST


Request Body

{}

Response Body

{
    "code": 200,
    "data": [
      {
        "shipping_method": "STAND",
        "warehouse_list": ["LAX", "JFK"],
        "note": ""
      },
      {
        "shipping_method": "PLUS",
        "warehouse_list": ["LAX", "JFK"],
        "note": ""
      }
    ]
}

Response Body Explanation

Attribute NameTypeDescription
codeIntegerResponse code: 200 successful, 400/500 failed
shipping_methodStringMethod of shipping
noteStringnote


Code Example

Get Shipping Methods API Code Example