By default, all product names for each vehicle are the same. If a product name is customized for a specific vehicle, we refer to this as the "alternative product name".
product_id | string <uuid> Product identifier. |
name | string [ 1 .. 255 ] characters Alternative, vehicle specific, name of product in the requested language. |
vehicle_make_id | integer <int64> Vehicle make identifier. |
vehicle_model_group_id | integer <int64> Vehicle model group identifier. |
vehicle_model_id | integer <int64> Vehicle model identifier. |
{- "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
- "name": "Remote Diagnostic Support",
- "vehicle_make_id": 0,
- "vehicle_model_group_id": 0,
- "vehicle_model_id": 0
}
Retrieve a list of alternative, vehicle specific, names for product.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
- "name": "Remote Diagnostic Support",
- "vehicle_make_id": 0,
- "vehicle_model_group_id": 0,
- "vehicle_model_id": 0
}
], - "total": 3255
}