GET api/v1/instruments/GetAllInstrumentModel
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of InstrumentModelsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| InstrumentTypeId | integer |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"InstrumentTypeId": 2,
"Name": "sample string 3"
},
{
"Id": 1,
"InstrumentTypeId": 2,
"Name": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfInstrumentModelsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
<InstrumentModelsModel>
<Id>1</Id>
<InstrumentTypeId>2</InstrumentTypeId>
<Name>sample string 3</Name>
</InstrumentModelsModel>
<InstrumentModelsModel>
<Id>1</Id>
<InstrumentTypeId>2</InstrumentTypeId>
<Name>sample string 3</Name>
</InstrumentModelsModel>
</ArrayOfInstrumentModelsModel>