GET api/Master/PriceCategories
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PriceCategoryName | Description | Type | Additional information |
---|---|---|---|
PriceTill | decimal number |
None. |
|
PriceFrom | decimal number |
None. |
|
PriceCategoryName | string |
None. |
|
PriceCategoryId | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "PriceTill": 1.1, "PriceFrom": 2.1, "PriceCategoryName": "sample string 3", "PriceCategoryId": "sample string 4" }, { "PriceTill": 1.1, "PriceFrom": 2.1, "PriceCategoryName": "sample string 3", "PriceCategoryId": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfPriceCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Showroom2020.ClientLogic.ResponseModel"> <PriceCategory> <PriceCategoryId>sample string 4</PriceCategoryId> <PriceCategoryName>sample string 3</PriceCategoryName> <PriceFrom>2.1</PriceFrom> <PriceTill>1.1</PriceTill> </PriceCategory> <PriceCategory> <PriceCategoryId>sample string 4</PriceCategoryId> <PriceCategoryName>sample string 3</PriceCategoryName> <PriceFrom>2.1</PriceFrom> <PriceTill>1.1</PriceTill> </PriceCategory> </ArrayOfPriceCategory>