GET api/v1/general/instrumentTypeModelPriceList/{instrumentPriceListId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| instrumentPriceListId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InstrumentTypeModelPriceListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| InstrumentPriceListId | integer |
Required |
|
| InstrumentTypeId | integer |
Required |
|
| InstrumentModelId | integer |
Required |
|
| Price | decimal number |
Required |
|
| Deposit | decimal number |
None. |
|
| IsDeleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"InstrumentPriceListId": 2,
"InstrumentTypeId": 3,
"InstrumentModelId": 4,
"Price": 5.0,
"Deposit": 6.0,
"IsDeleted": true
},
{
"Id": 1,
"InstrumentPriceListId": 2,
"InstrumentTypeId": 3,
"InstrumentModelId": 4,
"Price": 5.0,
"Deposit": 6.0,
"IsDeleted": true
}
]
application/xml, text/xml
Sample:
<ArrayOfInstrumentTypeModelPriceListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
<InstrumentTypeModelPriceListModel>
<Deposit>6</Deposit>
<Id>1</Id>
<InstrumentModelId>4</InstrumentModelId>
<InstrumentPriceListId>2</InstrumentPriceListId>
<InstrumentTypeId>3</InstrumentTypeId>
<IsDeleted>true</IsDeleted>
<Price>5</Price>
</InstrumentTypeModelPriceListModel>
<InstrumentTypeModelPriceListModel>
<Deposit>6</Deposit>
<Id>1</Id>
<InstrumentModelId>4</InstrumentModelId>
<InstrumentPriceListId>2</InstrumentPriceListId>
<InstrumentTypeId>3</InstrumentTypeId>
<IsDeleted>true</IsDeleted>
<Price>5</Price>
</InstrumentTypeModelPriceListModel>
</ArrayOfInstrumentTypeModelPriceListModel>