GET api/Price
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PriceTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| IsFixed | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"IsFixed": true
},
{
"Id": 1,
"Name": "sample string 2",
"IsFixed": true
}
]
application/xml, text/xml
Sample:
<ArrayOfPriceTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRetail.Helpers">
<PriceTypeModel>
<Id>1</Id>
<IsFixed>true</IsFixed>
<Name>sample string 2</Name>
</PriceTypeModel>
<PriceTypeModel>
<Id>1</Id>
<IsFixed>true</IsFixed>
<Name>sample string 2</Name>
</PriceTypeModel>
</ArrayOfPriceTypeModel>