GET api/RealEstateCategory
Gets all Real Estate Categories.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of Real Estate categories and Details
Collection of RealEstateCategoryName | Description | Type | Additional information |
---|---|---|---|
Id |
The unique identifier of the RealEstate Category. |
integer |
None. |
CategoryName |
The name of the RealEstate Category Name. |
string |
None. |
ImageURL |
The Image of the RealEstate Category. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "CategoryName": "sample string 2", "ImageURL": "sample string 3" }, { "Id": 1, "CategoryName": "sample string 2", "ImageURL": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfRealEstateCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models"> <RealEstateCategory> <CategoryName>sample string 2</CategoryName> <Id>1</Id> <ImageURL>sample string 3</ImageURL> </RealEstateCategory> <RealEstateCategory> <CategoryName>sample string 2</CategoryName> <Id>1</Id> <ImageURL>sample string 3</ImageURL> </RealEstateCategory> </ArrayOfRealEstateCategory>