Web Service Documentation / Categories / Property Services / Add Property Verification Professional Designation Information
Updated on January 15, 2021
This web service adds a specific professional designation to the verification information for a given property based on the information provided in the XML request. The property must have existing verification information.
25.0
POST
/property/(propertyId)/verification/professionalDesignation/(designationTypeId)
| Field Name | Value | Comments |
|---|---|---|
| Authorization | Basic credentials | |
| Content-Type | application/xml |
Yes
| Parameter Name | Description |
|---|---|
| designationTypeId | Id of the professional designation type |
| propertyId | Id of the property |
| Request/Response | Schema Name |
|---|---|
| Request | None |
| Response | response.xsd |
The following example adds Professional Engineer license information to the data verification information for a property that has an id of 32423.
POST /property/32423/verification/professionalDesignation/1<?xml version="1.0" encoding="UTF-8"?> <licenseList> <license> <countryCode>US</countryCode> <licenseNumber>PE111</licenseNumber> <licenseState>AK</licenseState> </license> <license> <countryCode>CA</countryCode> <licenseNumber>PE222</licenseNumber> <licenseState>AB</licenseState> </license> </licenseList>
The following example indicates that the operation was successful.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
<links>
<link linkDescription="This is the GET url for this Property Verification." link="/property/32423/verification/professionalDesignation" httpMethod="GET"/>
</links>
</response>
