Web Service Documentation / Categories / Property Services / Get Property
Updated on June 28, 2021
This web service retrieves information for a specific property. The property must already be shared with you. This service can also be used for to retrieve information on a building.
23.0
GET
/property/(propertyId)
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials |
Yes
Parameter Name | Description |
---|---|
propertyId | Id to the property |
Request/Response | Schema Name |
---|---|
Request | None |
Response | property.xsd |
The following example retrieves the information for a property that has an id of 56345.
GET /property/56345
The following example returns the property information for the property with the id of 56345.
<?xml version="1.0" encoding="UTF-8"?>
<property>
<name>8041- Richmond Road - Score 58</name>
<primaryFunction>Refrigerated Warehouse</primaryFunction>
<address address1="5300 Richmond Road" city="Bedford Heights" postalCode="44146" state="OH" country="US"/>
<numberOfBuildings>1</numberOfBuildings>
<yearBuilt>1992</yearBuilt>
<constructionStatus>Existing</constructionStatus>
<grossFloorArea units="Square Feet" temporary="false">
<value>856655</value>
</grossFloorArea>
<occupancyPercentage>10</occupancyPercentage>
<isFederalProperty>true</isFederalProperty>
<agency name="Advisory Council on Historic Preservation (ACHP)" code="ACHP" id="1" country="US"/>
<agencyDepartmentRegion>region update</agencyDepartmentRegion>
<federalCampus>campus update</federalCampus>
<notes><![CDATA[Permit license > 5 years old.]]></notes>
<accessLevel>Read Write</accessLevel>
<audit>
<createdBy>DUNAYT</createdBy>
<createdByAccountId>-14</createdByAccountId>
<createdDate>2012-08-16T17:04:57-04:00</createdDate>
<lastUpdatedBy>DUNAYT</lastUpdatedBy>
<lastUpdatedByAccountId>-14</lastUpdatedByAccountId>
<lastUpdatedDate>2012-08-16T17:09:35-04:00</lastUpdatedDate>
</audit>
</property>
The following example returns the property information for the property with the id of 56345. For Canadian properties only, the XML element "isInstitutionalProperty" specifies whether the property is an institutional or commercial building.
<?xml version="1.0" encoding="UTF-8"?>
<property>
<name>Broadway School</name>
<address address1="123 rue Main Street" city="Toronto" state="ON" postalCode="M5G1A1" country="CA"/>
<numberOfBuildings>1</numberOfBuildings>
<constructionStatus>Existing</constructionStatus>
<primaryFunction>K-12 School</primaryFunction>
<yearBuilt>2000</yearBuilt>
<grossFloorArea units="Square Feet" temporary="false" default="N/A">
<value>10000</value>
</grossFloorArea>
<occupancyPercentage>80</occupancyPercentage>
<isFederalProperty>false</isFederalProperty>
<isInstitutionalProperty>false</isInstitutionalProperty>
<notes><![CDATA[Permit license > 5 years old.]]></notes>
<audit>
<createdBy>DUNAYT</createdBy>
<createdByAccountId>-14</createdByAccountId>
<createdDate>2012-08-16T17:04:57-04:00</createdDate>
<lastUpdatedBy>DUNAYT</lastUpdatedBy>
<lastUpdatedByAccountId>-14</lastUpdatedByAccountId>
<lastUpdatedDate>2012-08-16T17:09:35-04:00</lastUpdatedDate>
</audit>
</property>