4005.Get Part List for Illustration in EPC
Brief Summary:- Retrieve the part list associated with a specific illustration (exploded view diagram) under a brand-specific EPC (Electronic Parts Catalog) (e.g., toyota, honda, bmw). The cata_code and epc parameters can be obtained from interface 4002.
http://api.17vin.com:8080/{epc}?action=illustration&cata_code={cata_code}&user={username}&token={token}
- GET or POST
| Parameter | Required | Type | Description | |
|---|---|---|---|---|
| epc | Yes | string | ||
| action | Yes | string | illustration | |
| cata_code | Yes | string | Get cata_code from 4002 | |
| user | Yes | string | user name | |
| token | Yes | string | MD5(concat(MD5(‘myusername’),MD5(‘mypassword’),’/toyota?action=illustration&cata_code=XXXXXX’)) |
{
"code": 1,
"msg": "success",
"data": {
"partlist": [{
"illustration_img_address": "090347.png",
"callout": "09150",
"cata_code": "0901_090347-001",
"partnumber_original": "091510H010",
"partnumber": "091510H010",
"name_en": "LLAVE DE TUBOS, BUJIAS",
"name_zh": "轮毂螺母扳手",
"std_name_en": null,
"std_name_zh": "",
"qty": "01",
"begin_date": "200502",
"end_date": "200812",
"replacement": null,
"remark_en": "",
"remark_zh": null,
"sort": null,
"is_fit_for_this_vin": 1
},
...
{
"illustration_img_address": "090347.png",
"callout": "09126",
"cata_code": "0901_090347-001",
"partnumber_original": "091260H011",
"partnumber": "091260H011",
"name_en": "CAJA, GATO",
"name_zh": "千斤顶盒",
"std_name_en": null,
"std_name_zh": "",
"qty": "01",
"begin_date": "201202",
"end_date": "999999",
"replacement": null,
"remark_en": "",
"remark_zh": null,
"sort": null,
"is_fit_for_this_vin": 1
}],
"imgaddress": "090347.png",
"all_img_hotspots": [{
"img_hotspots": {
"img_name": "090347.png",
"img_width": 760,
"img_height": 1112,
"img_format": "image/png",
"hotspots": [{
"callout": "09150",
"topleft_x": 189,
"topleft_y": 586
},
...
{
"callout": "09126",
"topleft_x": 541,
"topleft_y": 414
}]
}
}]
}
}
Response partlist
| Parameter | Type | Description | |
|---|---|---|---|
| callout | string | ||
| qty | string | ||
| replacement | string | ||
| partnumber | string | ||
| partnumber_original | string | ||
| name_en | string | ||
| name_zh | string | ||
| std_name_en | string | ||
| std_name_zh | string | ||
| illustration_img_address | string | http://resource.17vin.com/img/{epc}/{illustration_img_address} http://resource.17vin.com/img/toyota/090347.png | |
| begin_date | string | ||
| end_date | string | ||
| remark_en | string | ||
| remark_zh | string | ||
| is_fit_for_this_vin | int | ||
| sort | int |
| Parameter | Type | Description |
|---|---|---|
| img_name | string | http://resource.17vin.com/img/{epc}/{illustration_img_address} http://resource.17vin.com/img/toyota/090347.png |
| img_width | int | |
| img_height | string | |
| img_format | string | |
| hotspots | string | |
| hotspots>callout | string | |
| hotspots>topleft_x | string | |
| hotspots>topleft_y | string |
- This interface provides the complete list of parts under the image number, without filtering.