# 获取区域仓库
# 接口说明
通过该接口可获取区域仓库信息。
# 接口调用请求说明
POST https://api.weixin.qq.com/channels/ec/warehouse/get?access_token=ACCESS_TOKEN
# 请求参数说明
参数 | 类型 | 是否必填 | 描述 |
---|---|---|---|
out_warehouse_id | string | 是 | 外部仓库ID,参考查询区域仓库列表接口 |
# 请求参数示例
{
"out_warehouse_id": "test1"
}
# 返回参数说明
参数 | 类型 | 描述 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
data.out_warehouse_id | string | 外部仓库ID |
data.name | string | 仓库名称 |
data.intro | string | 仓库介绍 |
data.cover_locations[] | array[obj] | 覆盖区域 |
data.cover_locations[].address_id1 | number | 省份地址编码 |
data.cover_locations[].address_id2 | number | 市地址编码 |
data.cover_locations[].address_id3 | number | 区地址编码 |
data.cover_locations[].address_id4 | number | 街道地址编码 |
# 返回参数示例
{
"errcode": 0,
"errmsg": "ok",
"data": {
"out_warehouse_id": "test1",
"name": "bbb",
"intro": "aaa",
"cover_locations": [{
"address_id1": 440000000,
"address_id2": 440100000,
"address_id3": 440111000,
"address_id4": 0
}]
}
}
# 错误码
错误码 | 错误描述 |
---|---|
公共错误码 | - |
10020202 | out_warehouse_id不存在 |