Vehicle model group.
id | integer <int64> Vehicle model group identifier. |
enabled | boolean Whether the vehicle model group is enabled. |
make_id | integer Vehicle make identifier. |
name | string [ 1 .. 255 ] characters Name of vehicle model group. |
{- "id": 5796,
- "enabled": true,
- "make_id": 49,
- "name": "FOCUS"
}
Retrieve a list of vehicle model groups.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "id": 5796,
- "enabled": true,
- "make_id": 49,
- "name": "FOCUS"
}
], - "total": 3255
}
Retrieve a single vehicle model group by its identifier.
Successful response.
An error occurred - see status code and problem response for more information.
{- "id": 5796,
- "enabled": true,
- "make_id": 49,
- "name": "FOCUS"
}