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 RealEstateName | 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": "8472b341-076c-4056-8c25-b2f5abbe2bc1", "RealEstate_ID": "649a654d-a93a-40f7-93b1-786dcdba0526" }, { "Name": "sample string 1", "ParentRealEstate_ID": "8472b341-076c-4056-8c25-b2f5abbe2bc1", "RealEstate_ID": "649a654d-a93a-40f7-93b1-786dcdba0526" } ]
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>8472b341-076c-4056-8c25-b2f5abbe2bc1</ParentRealEstate_ID> <RealEstate_ID>649a654d-a93a-40f7-93b1-786dcdba0526</RealEstate_ID> </RealEstate> <RealEstate> <Name>sample string 1</Name> <ParentRealEstate_ID>8472b341-076c-4056-8c25-b2f5abbe2bc1</ParentRealEstate_ID> <RealEstate_ID>649a654d-a93a-40f7-93b1-786dcdba0526</RealEstate_ID> </RealEstate> </ArrayOfRealEstate>