# 查询送检配置模板信息
# 接口说明
通过该接口可以查询绑定送检信息需要的配置模板信息,比如质检仓库、质检机构、快递公司、快递产品、保价类型等。
# 接口调用请求说明
GET https://api.weixin.qq.com/channels/ec/qic/inspect/submitconfig/get?access_token=ACCESS_TOKEN
# 返回参数说明
参数 | 类型 | 描述 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
submit_config | object SubmitConfig | 送检配置模板信息,请参考SubmitConfig |
# 返回参数示例
{
"errcode": 0,
"errmsg": "ok",
"submit_config": {
"delivery_list": [
{
"id": "STO",
"name": "申通快递",
"delivery_products": [
{
"id": 1,
"name": "申通快递",
"enable_insure": 2,
"insure_type_list": []
}
]
},
{
"id": "SF",
"name": "顺丰速运",
"delivery_products": [
{
"id": 2,
"name": "顺丰标快",
"enable_insure": 1,
"insure_type_list": [
{
"id": "INSURE",
"name": "基础保",
"upper_limit_type": 1,
"upper_limit_amount": 1000
}
]
},
{
"id": 247,
"name": "顺丰电商标快",
"enable_insure": 2,
"insure_type_list": []
}
]
}
],
"inspect_org_list": [
{
"id": "001",
"name": "中质"
}
],
"charge_url": ""
}
}
# 错误码
错误码 | 错误描述 |
---|---|
公共错误码 | - |
10021600 | 质检系统异常 |
10021602 | 小店尚未配置质检基础信息 |
10021606 | 质检服务未开通 |
# 结构体
# SubmitConfig
送检配置模板信息
参数 | 类型 | 描述 |
---|---|---|
delivery_list | array[Delivery] | 快递公司列表,请参考Delivery |
inspect_org_list | array[InspectOrg] | 质检机构列表请参考InspectOrg |
charge_url | string | 资费标准 |
# Delivery
快递公司列表
参数 | 类型 | 描述 |
---|---|---|
id | string | 快递公司编码 |
name | string | 快递公司名称 |
delivery_products | Array[DeliveryProductInfo] | 快递产品列表,请参考DeliveryProductInfo |
# InspectOrg
质检机构列表
参数 | 类型 | 描述 |
---|---|---|
id | string | 质检机构id |
name | string | 质检机构名称 |
# DeliveryProductInfo
快递产品列表
参数 | 类型 | 描述 |
---|---|---|
id | number | 快递公司产品id |
name | string | 快递公司产品名称 |
enable_insure | number | 是否支持保价(1-支持; 2-不支持) |
insure_type_list | Array[InsureType] | 保价类型列表,请参考InsureType |
# InsureType
保价类型列表
参数 | 类型 | 描述 |
---|---|---|
id | string | 保价类型id |
name | string | 保价名称 |
upper_limit_type | number | 上限类型(1-有上限, 2-无上限) |
upper_limit_amount | number | 上限金额(单位:分) |