GET api/REstateCategory

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 REstateCategory
NameDescriptionTypeAdditional 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:
<ArrayOfREstateCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models">
  <REstateCategory>
    <categoryName>sample string 2</categoryName>
    <id>1</id>
    <imageURL>sample string 3</imageURL>
  </REstateCategory>
  <REstateCategory>
    <categoryName>sample string 2</categoryName>
    <id>1</id>
    <imageURL>sample string 3</imageURL>
  </REstateCategory>
</ArrayOfREstateCategory>