Web Service Documentation / Categories / Property Services / Get Property Verification Information
Updated on January 15, 2021
This web service retrieves verification information for a specific property specified in the URL.
23.0
GET
/property/(propertyId)/verification
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials |
Yes
Parameter Name | Description |
---|---|
propertyId | Id of the property |
Request/Response | Schema Name |
---|---|
Request | None |
Response | verification.xsd |
The following example retrieves the verification information for a property that has an id of 32423.
GET /property/32423/verification
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>