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 Name | Type | Description |
---|---|---|
code | Integer | Response code: 200 successful, 400/500 failed |
shipping_method | String | Method of shipping |
note | String | note |
Code Example
Get Shipping Methods API Code Example