40072.[私有查询]通过配件号获取适用车型(小程序暂时不用此接口。用40073即可)
简要描述:- 在某品牌下进行查询,获取该配件的标准适用车型,也就是获取该配件适用于哪些车款,返回内容格式与40032相同,只支持精确查询。此查询为私有查询,只有品牌方或者被品牌方授权的用户才有查询权限,manufacturer_brand参数为品牌名称或者公司名称。
http://api.17vin.com:8080/?action=aftermarket_private_get_modellist&part_number={part_number}&&manufacturer_brand={manufacturer_brand}&user={user}&token={token}
- GET或POST
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| action | 是 | string | 动作命令,通过配件号获取适用车型 |
| part_number | 是 | string | 动作命令,搜索的配件号 |
| manufacturer_brand | 是 | string | 公司名称,如:精时信息科技有限公司 |
| user | 是 | string | 用户名 |
| token | 是 | string | 密钥,算法如下: MD5(concat(MD5('myusername'),MD5('mypassword'),'/?action=aftermarket_private_get_modellist&part_number=JSB00001&manufacturer_brand=精时信息科技有限公司')) |
{
"code":1,
"data":[
{
"epc":"audi_vw",
"brand_alias":"奥迪(一汽奥迪)",
"factory":"一汽奥迪",
"brand":"奥迪",
"series":"A4",
"model":"A4",
"cc":"1.8T",
"model_years":"2003-2008",
"model_ids":"29029,29030,29031,29032,29033,29034,29035,29263,29264,29265,300458,300459,300460,300461,300462,300463,300464,301730,301743,301750,301753,301756,301758,31576,31577,31578,49919,50016,500178,50049,50064,50088,50114,50120,50121,81,82,83,84,87,88,89,90,92,94,96,97",
"engine_nos":"BFB,BKB"
},
...
],
"msg":"success"
}
返回参数说明
| 参数名 | 类型 | 说明 | |
|---|---|---|---|
| epc | string | ** | |
| brand_alias | string | ** | |
| factory | string | ** | |
| brand | string | ** | |
| series | string | 车系 | |
| model | string | 车型 | |
| cc | string | 车型 | |
| model | string | 排量 | |
| model_years | string | 年款 | |
| model_ids | string | 车型id列表 | |
| engine_nos | string | 引擎号 |