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

Update Property Verification Professional Designation Information

Updated on January 15, 2021

Description

This web service updates a specific professional designation and its licenses for a given property's verification information by deleting all of the licenses for the specific professional designation and replacing the licenses with the information provided in the XML request. The property must have existing verification information.

Version

22.0

HTTP Method

PUT

Resource URL

/property/(propertyId)/verification/professionalDesignation/(designationTypeId)

Header

Field Name Value Comments
Authorization Basic credentials
Content-Type application/xml

Authorization Required

Yes

Parameters

Parameter Name Description
designationTypeId Id of the professional designation type
propertyId Id of the property

XML Schemas

Request/Response Schema Name
Request verification.xsd
Response response.xsd

Example Request

The following example updates the Professional Engineer license information that belongs to a property that has an id of 32423.

PUT  /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>

Example Response

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>
TEST