GET api/v1/RealEstates
Returns list of lock group's real estates
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of RealEstate| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Real estate name |
string |
None. |
| ParentRealEstate_ID |
Parent's ID if real estate is nested and linked to a parent. Null if it isn't nested. |
globally unique identifier (nullable) |
None. |
| RealEstate_ID |
ID |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"ParentRealEstate_ID": "11a484c6-a61e-4208-b844-b5777fcad26a",
"RealEstate_ID": "a38a7082-fb4b-4ce0-8035-11c847f99b62"
},
{
"Name": "sample string 1",
"ParentRealEstate_ID": "11a484c6-a61e-4208-b844-b5777fcad26a",
"RealEstate_ID": "a38a7082-fb4b-4ce0-8035-11c847f99b62"
}
]
application/xml, text/xml
Sample:
<ArrayOfRealEstate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus">
<RealEstate>
<Name>sample string 1</Name>
<ParentRealEstate_ID>11a484c6-a61e-4208-b844-b5777fcad26a</ParentRealEstate_ID>
<RealEstate_ID>a38a7082-fb4b-4ce0-8035-11c847f99b62</RealEstate_ID>
</RealEstate>
<RealEstate>
<Name>sample string 1</Name>
<ParentRealEstate_ID>11a484c6-a61e-4208-b844-b5777fcad26a</ParentRealEstate_ID>
<RealEstate_ID>a38a7082-fb4b-4ce0-8035-11c847f99b62</RealEstate_ID>
</RealEstate>
</ArrayOfRealEstate>