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

Get Property Verification Professional Designation Information

Updated on January 15, 2021

Description

This web service retrieves the professional designation portion of the verification information for a specific property specified in the URL.

Version

22.0

HTTP Method

GET

Resource URL

/property/(propertyId)/verification/professionalDesignation

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 professional designation portion of the verification information for the property that has an id of 32423.

GET  /property/32423/verification/professionalDesignation

Example Response

The following example displays the professional designation portion of the verification information for the property that has an id of 32423.

<?xml version="1.0" encoding="UTF-8"?>
<professionalDesignationList>
     <professionalDesignation name="Professional Engineer" id="1">
          <licenseList>
               <license>
                    <index>1</index>
                    <countryCode>US</countryCode>
                    <licenseNumber>345-DFD-453</licenseNumber>
                    <licenseState>MH</licenseState>
               </license>
          </licenseList>
     </professionalDesignation>
     <professionalDesignation name="Registered Architect" id="2">
          <licenseList>
               <license>
                    <index>1</index>
                    <countryCode>US</countryCode>
                    <licenseNumber>AAA-454-GGGE</licenseNumber>
                    <licenseState>KS</licenseState>
               </license>
          </licenseList>
     </professionalDesignation>
</professionalDesignationList>
TEST