5103.Get Tertiary Category List via VIN
Brief Summary:- Retrieve the tertiary category list (third-level catalog categories) for a specific VIN (Vehicle Identification Number) from the associated Electronic Parts Catalog (EPC). The epc parameter must be obtained from interfaces 3001, 3002, or 3003, and cata2_code must be retrieved from interface 5102.
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:http://api.17vin.com:8080/{epc}?action=cata3&vin={vin}&cata2_code={cata2_code}&user={user}&token={token}
- GET or POST
| Parameter | Required | Type | Description |
|---|---|---|---|
| epc | Yes | string | Get epc from 3001 |
| action | Yes | string | cata3 |
| vin | Yes | string | |
| cata2_code | Yes | string | Get it from 5102(cata_code) |
| is_vin_filter_open | No | string | Enable VIN-based part filtering: 1 = enabled, 0 = disabled (default: 1) |
| user | Yes | string | user name |
| epc_id | No | string | |
| js_id | No | string | |
| token | Yes | string | MD5(concat(MD5(‘myusername’),MD5(‘mypassword’),’/xxx?action=cata3&vin=xxxxxxxxxxxxxxxxx&cata2_code=xxxxxx’)) |
{
"code":1,
"msg":"success",
"data":{
"catalist":[
{
"cata_level":3,
"is_last":0,
"cata_index":"89312206",
"cata_code":"-2147483637_546_4977_18884",
"name_en":null,
"name_zh":"凸轮轴和阀门",
"remark_en":null,
"remark_zh":null,
"begin_date":null,
"end_date":null,
"illustration_img_address":"12206.png",
"is_fit_for_this_vin":1
},
...
{
"cata_level":3,
"is_last":0,
"cata_index":"89312207",
"cata_code":"-2147483637_546_4977_18897",
"name_en":null,
"name_zh":"连杆和活塞",
"remark_en":null,
"remark_zh":null,
"begin_date":null,
"end_date":null,
"illustration_img_address":"12207.png",
"is_fit_for_this_vin":1
},
]
}
}
Response description
| Parameter | Type | Description | |
|---|---|---|---|
| cata_level | int | 3 | |
| is_last | int | Whether it is the final level directory: 1 = yes, 0 = no. | |
| cata_index | string | ||
| cata_code | string | ||
| name_en | string | ||
| name_zh | string | ||
| illustration_img_address | string | http://resource.17vin.com/img/{epc}/{illustration_img_address} :http://resource.17vin.com/img/jaguar/12207.png | |
| begin_date | string | ||
| end_date | string | ||
| remark_en | string | ||
| remark_zh | string | ||
| is_fit_for_this_vin | int | Applicable to current VIN: 1 = applicable, 0 = not applicable |
- If is_last is 1, the next step is to call interface 5105 to retrieve the parts list.