GET api/MakeModel?resultSetType={resultSetType}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
resultSetType
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "MakeModelId": 1,
    "MakeId": 2,
    "Make": "sample string 3",
    "ModelId": 4,
    "Model": "sample string 5"
  },
  {
    "MakeModelId": 1,
    "MakeId": 2,
    "Make": "sample string 3",
    "ModelId": 4,
    "Model": "sample string 5"
  },
  {
    "MakeModelId": 1,
    "MakeId": 2,
    "Make": "sample string 3",
    "ModelId": 4,
    "Model": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMakeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Crew.WebService.Models">
  <MakeModel>
    <Make>sample string 3</Make>
    <MakeId>2</MakeId>
    <MakeModelId>1</MakeModelId>
    <Model>sample string 5</Model>
    <ModelId>4</ModelId>
  </MakeModel>
  <MakeModel>
    <Make>sample string 3</Make>
    <MakeId>2</MakeId>
    <MakeModelId>1</MakeModelId>
    <Model>sample string 5</Model>
    <ModelId>4</ModelId>
  </MakeModel>
  <MakeModel>
    <Make>sample string 3</Make>
    <MakeId>2</MakeId>
    <MakeModelId>1</MakeModelId>
    <Model>sample string 5</Model>
    <ModelId>4</ModelId>
  </MakeModel>
</ArrayOfMakeModel>