Web Service Documentation / Categories / Building Services / Get Building

Get Building

Updated on December 10, 2018

Description

This web service retrieves information for a specific building. The building must already be shared with you.

Version

22.0

HTTP Method

GET

Resource URL

/building/(buildingId)

Header

Field Name Value Comments
Authorization Basic credentials

Authorization Required

Yes

Parameters

Parameter Name Description
propertyId

XML Schemas

Request/Response Schema Name
Request None
Response building.xsd

Example Request

The following example retrieves the information for a building that has an id of 5000011.

GET  /building/5000011

Example Response

The following example returns the property information for the building with the id of 5000011.

<?xml version="1.0" encoding="UTF-8"?>
<building>
    <name>8041- Richmond Road - Score 58</name>
    <address address1="5300 Richmond Road" city="Bedford Heights" postalCode="44146" state="OH" country="US"/>
    <constructionStatus>Existing</constructionStatus>
    <primaryFunction>Refrigerated Warehouse</primaryFunction>
    <yearBuilt>1992</yearBuilt>
    <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>
    <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>
</building>
TEST