Get Warehouse List
This API describes how to get the warehouse list.
Method: POST
Request Body
json
{}
Response Body
json
{
"code": 200,
"data": [
{
"warehouse_code": "LAX01W",
"shipping_method_list": ["GLOBAL STANDARD", "GLOBAL POST"]
},
{
"warehouse_code": "JFK01W",
"shipping_method_list": ["GLOBAL STANDARD", "GLOBAL POST"]
}
]
}
Response Body Explanation
| Attribute Name | Type | Description |
|---|---|---|
| code | Integer | Response code: 200 successful, 400/500 failed |
| data | List | warehouse and shipping method list |
| warehouse_code | String | Your available warehouse code |
| shipping_method_list | List | Your available fulfillment shipping method list, each warehouse has it's own shipping method list |


