POST api/Search/GetCars

Request Information

URI Parameters

None.

Body Parameters

SearchModel
NameDescriptionTypeAdditional information
SearchText

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SearchText": "sample string 1"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponseOfListOfCarModel
NameDescriptionTypeAdditional information
ApiMessage

ApiMessage

None.

Data

Collection of CarModel

None.

Response Formats

application/json, text/json

Sample:
{
  "ApiMessage": {
    "StatusCode": 1,
    "StatusMessage": "sample string 2"
  },
  "Data": [
    {
      "Car_Id": 1,
      "Car_Name": "sample string 2",
      "Car_CategId": 3,
      "Car_CategName": "sample string 4",
      "Car_ModelId": 5,
      "Car_ModelName": "sample string 6",
      "Car_CurrentBranchId": 7,
      "Car_CurrentBranchName": "sample string 8",
      "Car_LevelId": 9,
      "Car_LevelNamed": "sample string 10",
      "Car_CurrentMeter": 11.1,
      "Car_Year": 12,
      "Car_Gear": 64,
      "Car_Color": "sample string 14",
      "Car_Chase": "sample string 15",
      "RowCount": 16
    },
    {
      "Car_Id": 1,
      "Car_Name": "sample string 2",
      "Car_CategId": 3,
      "Car_CategName": "sample string 4",
      "Car_ModelId": 5,
      "Car_ModelName": "sample string 6",
      "Car_CurrentBranchId": 7,
      "Car_CurrentBranchName": "sample string 8",
      "Car_LevelId": 9,
      "Car_LevelNamed": "sample string 10",
      "Car_CurrentMeter": 11.1,
      "Car_Year": 12,
      "Car_Gear": 64,
      "Car_Color": "sample string 14",
      "Car_Chase": "sample string 15",
      "RowCount": 16
    }
  ]
}