Appearance
获取物流公司列表
接口路径
- 请求方式:
GET
- 接口地址:
/Third/Order/getCourierCompanyList
- 频率限制:
10秒100次
响应参数
参数 | 类型 | 必填 | 描述 |
---|---|---|---|
code | integer | 是 | 状态码 |
msg | string | 是 | 提示信息 |
data | array | 是 | 物流公司列表 |
data
数组结构:
参数 | 类型 | 必填 | 描述 |
---|---|---|---|
id | integer | 是 | 快递公司ID |
company | string | 是 | 快递公司名称 |
delivery_id | string | 是 | 快递编码 |
logo | string | 是 | 快递公司logo |
响应示例
json
{
"code": 200,
"msg": "success",
"data": [
{
"id": 1,
"company": "顺丰快递",
"delivery_id": "SF",
"logo": "https://nyfs.oss.nuoyun.tv/Static/Express/sf.png"
},
{
"id": 2,
"company": "圆通快递",
"delivery_id": "YTO",
"logo": "https://nyfs.oss.nuoyun.tv/Static/Express/yto.png"
},
{
"id": 3,
"company": "韵达快递",
"delivery_id": "YUNDA",
"logo": "https://nyfs.oss.nuoyun.tv//Static/Express/yunda.png"
}
]
}