Web Service Documentation / Categories / Property Services / Get Property Verification Information

Get Property Verification Information

Updated on January 15, 2021

Description

This web service retrieves verification information for a specific property specified in the URL.

Version

22.0

HTTP Method

GET

Resource URL

/property/(propertyId)/verification

Header

Field Name Value Comments
Authorization Basic credentials

Authorization Required

Yes

Parameters

Parameter Name Description
propertyId Id of the property

XML Schemas

Request/Response Schema Name
Request None
Response verification.xsd

Example Request

The following example retrieves the verification information for a property that has an id of 32423.

GET  /property/32423/verification

Example Response

The following example lists the professional designation types that can be used for property data verification.

<?xml version="1.0" encoding="UTF-8"?>
<verification>
     <periodEndingDate>2019-01</periodEndingDate>
     <verificationDate>2020-11-01</verificationDate>
     <name>John Doe</name>
     <title>Building Certifier</title>
     <organization>Certification Property Group</organization>
     <phone>111-111-1111</phone>
     <email>john.doe@cert.com</email>
     <postalCode>22201</postalCode>
     <professionalDesignationList>
          <professionalDesignation name="Professional Engineer" id="1">
               <licenseList>
                    <license>
                         <index>1</index>
                         <countryCode>US</countryCode>
                         <licenseNumber>2342AJDF4-AA</licenseNumber>
                         <licenseState>MH</licenseState>
                    </license>
               </licenseList>
          </professionalDesignation>
     </professionalDesignationList>
</verification>
LIVE