GET OneStop/Models
Gets all models
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ModelSummaryDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ModelID | integer |
None. |
|
| ManufacturerID | integer |
None. |
|
| Model | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ModelID": 1,
"ManufacturerID": 2,
"Model": "sample string 3"
},
{
"ModelID": 1,
"ManufacturerID": 2,
"Model": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfModelSummaryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OneStopWebAPI.DTO">
<ModelSummaryDTO>
<ManufacturerID>2</ManufacturerID>
<Model>sample string 3</Model>
<ModelID>1</ModelID>
</ModelSummaryDTO>
<ModelSummaryDTO>
<ManufacturerID>2</ManufacturerID>
<Model>sample string 3</Model>
<ModelID>1</ModelID>
</ModelSummaryDTO>
</ArrayOfModelSummaryDTO>