ENVIRONMENT : Test

POST {culture}/api/ExCarModel/Search

Returns list of car models

Request Information

URI Parameters

Name Description Type Additional information
culture

string

None.

Body Parameters

ExCarModelSearchModel
Name Description Type Additional information
CarCategoryIds

Identifiers for car categories

Collection of integer

None.

CarMakeIds

Identifiers for car makes

Collection of integer

None.

CarTypeIds

Identifiers for car types

Collection of integer

None.

Code

Car code

string

None.

CreationTimeFrom

Creation time - from. UTC representation in ISO 8601 format.

date

None.

CreationTimeTo

Creation time - to. UTC representation in ISO 8601 format.

date

None.

IsActive

Is car model active or not

boolean

None.

ModificationTimeFrom

Modifiction time - from. UTC representation in ISO 8601 format.

date

None.

ModificationTimeTo

Modifiction time - to. UTC representation in ISO 8601 format.

date

None.

Name

Friendly car model name

string

None.

WebTitle

Car model web title

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Code": "sample string 2",
  "WebTitle": "sample string 3",
  "CarMakeIds": [
    1,
    2
  ],
  "CarTypeIds": [
    1,
    2
  ],
  "CarCategoryIds": [
    1,
    2
  ],
  "IsActive": true,
  "CreationTimeFrom": "2026-05-15T11:05:17.6793972+02:00",
  "CreationTimeTo": "2026-05-15T11:05:17.6793972+02:00",
  "ModificationTimeFrom": "2026-05-15T11:05:17.6793972+02:00",
  "ModificationTimeTo": "2026-05-15T11:05:17.6793972+02:00"
}

Response Information

Resource Description

Returns list of car models

Collection of ExCarModelListModel
Name Description Type Additional information
AverageFuelConsumption

Average fuel consumption for car model

decimal number

None.

CarCategoryGroup

Car category group for car model

string

None.

CarCategoryId

Car category identifier for car model

integer

None.

CarCategorySIPP

Car category SIPP for car model

string

None.

CarMakeAndModelName

Car make and model name for car model

string

None.

CarMakeId

Car make identifier for car model

integer

None.

CarMakeName

Car make name for car model

string

None.

CarTypeId

Car type identifier for car model

integer

None.

CarTypeName

Car type name for car model

string

None.

Code

Car model code

string

None.

ElectroTankSize

Electro tank size for car model

integer

None.

EngineDisplacement

Engine displacement

integer

None.

EnginePowerKW

Engine power for car model

integer

None.

FuelTankSize

Fuel tank size for car model

integer

None.

FuelTankSizeForFullFuelTank

Fuel tank size for full fuel tank

integer

None.

FuelTypeId

Fuel type identifier for car model

integer

None.

FuelTypeName

Fuel type name for car model

string

None.

GasTankSize

Gas tank size for car model

integer

None.

Id

Identifier for car model

integer

None.

IsActive

If car model is active or not

boolean

None.

Name

Car model name

string

None.

NumberOfCylinders

number of cylinders for car model

integer

None.

NumberOfDoors

Number of doors for car model

integer

None.

ServiceInterval

Service interval for car model (milleage)

integer

None.

ServiceIntervalMonths

Service interval for car model (months)

integer

None.

WebTitle

Car model weg title

string

None.

Year

Year for car model

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "IsActive": true,
    "Name": "sample string 2",
    "WebTitle": "sample string 3",
    "Code": "sample string 4",
    "FuelTankSize": 1,
    "FuelTankSizeForFullFuelTank": 1,
    "ElectroTankSize": 1,
    "GasTankSize": 1,
    "EngineDisplacement": 1,
    "ServiceInterval": 1,
    "ServiceIntervalMonths": 1,
    "CarCategoryId": 1,
    "CarCategorySIPP": "sample string 5",
    "CarCategoryGroup": "sample string 6",
    "CarTypeName": "sample string 7",
    "CarMakeId": 1,
    "CarMakeName": "sample string 8",
    "CarMakeAndModelName": "sample string 9",
    "CarTypeId": 1,
    "FuelTypeId": 1,
    "FuelTypeName": "sample string 10",
    "EnginePowerKW": 1,
    "NumberOfCylinders": 1,
    "AverageFuelConsumption": 1.0,
    "Year": 1,
    "NumberOfDoors": 1
  },
  {
    "Id": 1,
    "IsActive": true,
    "Name": "sample string 2",
    "WebTitle": "sample string 3",
    "Code": "sample string 4",
    "FuelTankSize": 1,
    "FuelTankSizeForFullFuelTank": 1,
    "ElectroTankSize": 1,
    "GasTankSize": 1,
    "EngineDisplacement": 1,
    "ServiceInterval": 1,
    "ServiceIntervalMonths": 1,
    "CarCategoryId": 1,
    "CarCategorySIPP": "sample string 5",
    "CarCategoryGroup": "sample string 6",
    "CarTypeName": "sample string 7",
    "CarMakeId": 1,
    "CarMakeName": "sample string 8",
    "CarMakeAndModelName": "sample string 9",
    "CarTypeId": 1,
    "FuelTypeId": 1,
    "FuelTypeName": "sample string 10",
    "EnginePowerKW": 1,
    "NumberOfCylinders": 1,
    "AverageFuelConsumption": 1.0,
    "Year": 1,
    "NumberOfDoors": 1
  }
]