Web Service Documentation / Categories / Property Services / Get Property Verification Professional Designation Information
Updated on January 15, 2021
This web service retrieves the professional designation portion of the verification information for a specific property specified in the URL.
23.0
GET
/property/(propertyId)/verification/professionalDesignation
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 professional designation portion of the verification information for the property that has an id of 32423.
GET /property/32423/verification/professionalDesignation
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>