5102.Get Secondary Category List via VIN

Brief Summary:

If the is_last field in the response is 0, proceed to request the next-level category. If is_last is 1, use interface 5105 to retrieve the part list.

Request URL: Request example: Request method: Parameters:

ParameterRequiredTypeDescription
epcYesstringGet epc from 3001
vinYesstring
cata1_codeYesstringGet it from 5101(cata_code)
is_vin_filter_openNostringEnable VIN-based part filtering: 1 = enabled, 0 = disabled (default: 1)
userYesstringuser name
epc_idNostring
js_idNostring
tokenYesstringMD5(concat(MD5(‘myusername’),MD5(‘mypassword’),’/xxx?action=cata2&vin=xxxxxxxxxxxxxxxxx&cata1_code=xx’))

Response example
{

"code": 1,

"msg": "success",

"data": {

"catalist": [{

"cata_level": 2,

"is_last": 1,

"cata_index": "0901",

"cata_code": "0901_090562C-0001",

"name_en": "STANDARD TOOL",

"name_zh": "标准工具",

"remark_en": "",

"remark_zh": "",

"begin_date": "201005",

"end_date": "999999",

"illustration_img_address": "090562C.png",

"Is_fit_for_this_vin": 1

},

...

{

"cata_level": 2,

"is_last": 1,

"cata_index": "2211",

"cata_code": "2211_222539B-0001",

"name_en": "FUEL INJECTION SYSTEM",

"name_zh": "燃油喷射系统",

"remark_en": "",

"remark_zh": "",

"begin_date": "201005",

"end_date": "201509",

"illustration_img_address": "222539B.png",

"Is_fit_for_this_vin": 1

}]

}

}

Response description

ParameterTypeDescription
cata_levelint目录级别
is_lastintWhether it is the final level directory: 1 = yes, 0 = no.
cata_indexstring
cata_codestring
name_enstring
name_zhstring
illustration_img_addressstringhttp://resource.17vin.com/img/{epc}/{illustration_img_address} http://resource.17vin.com/img/toyota/222539B.png
begin_datestring
end_datestring
remark_enstring
remark_zhstring
is_fit_for_this_vinintApplicable to current VIN: 1 = applicable, 0 = not applicable

Remark