Vehicle model.
id | integer <int64> Vehicle model identifier. |
enabled | boolean Whether the vehicle model is enabled. A disabled vehicle model cannot be used to create new tickets. |
make_id | integer <int64> Vehicle make identifier. |
manufactured_from | string or null <date> Date on which vehicle model manufacturing started (first of month). |
manufactured_till | string or null <date> Date on which vehicle model manufacturing ended (end of month). |
model_group_id | integer <int64> Vehicle model group identifier. |
name | string [ 1 .. 255 ] characters Name of vehicle model. |
{- "id": 5874,
- "enabled": true,
- "make_id": 49,
- "manufactured_from": "2010-01-01",
- "manufactured_till": "2015-06-30",
- "model_group_id": 5796,
- "name": "FOCUS - III"
}
Retrieve a list of vehicle models.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0
}, - "result": [
- {
- "id": 5874,
- "enabled": true,
- "make_id": 49,
- "manufactured_from": "2010-01-01",
- "manufactured_till": "2015-06-30",
- "model_group_id": 5796,
- "name": "FOCUS - III"
}
], - "total": 3255
}
Retrieve a single vehicle model by its identifier.
Successful response.
id | integer <int64> Vehicle model identifier. |
enabled | boolean Whether the vehicle model is enabled. A disabled vehicle model cannot be used to create new tickets. |
make_id | integer <int64> Vehicle make identifier. |
manufactured_from | string or null <date> Date on which vehicle model manufacturing started (first of month). |
manufactured_till | string or null <date> Date on which vehicle model manufacturing ended (end of month). |
model_group_id | integer <int64> Vehicle model group identifier. |
name | string [ 1 .. 255 ] characters Name of vehicle model. |
An error occurred - see status code and problem response for more information.
{- "id": 5874,
- "enabled": true,
- "make_id": 49,
- "manufactured_from": "2010-01-01",
- "manufactured_till": "2015-06-30",
- "model_group_id": 5796,
- "name": "FOCUS - III"
}