Web Service Documentation / Categories / Property Services / Add Property Verification Information

Add Property Verification Information

Updated on January 15, 2021

Description

This web service adds verification information for a given property based on the information provided in the XML request.

Version

22.0

HTTP Method

POST

Resource URL

/property/(propertyId)/verification

Header

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

Authorization Required

Yes

Parameters

Parameter Name Description
propertyId Id of the property

XML Schemas

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

Example Request

The following example adds verification information to the property that has an id of 32423.

POST  /property/32423/verification

<?xml version="1.0" encoding="UTF-8"?> <verification> <periodEndingDate>2020-01</periodEndingDate> <verificationDate>2020-11-03</verificationDate> <name>John Doe</name> <title>Data Verifier</title> <organization>Government Support Services, Inc.</organization> <phone>703-622-2111</phone> <email>john.doe@verifier.com</email> <postalCode>20814</postalCode> <professionalDesignationList> <professionalDesignation id="1"> <licenseList> <license> <countryCode>US</countryCode> <licenseNumber>PE111</licenseNumber> <licenseState>AK</licenseState> </license> <license> <countryCode>CA</countryCode> <licenseNumber>PE222</licenseNumber> <licenseState>AB</licenseState> </license> </licenseList> </professionalDesignation> <professionalDesignation id="5"> <licenseList> <license> <licenseName>Other license name</licenseName> <licenseNumber>Other license number</licenseNumber> </license> </licenseList> </professionalDesignation> </professionalDesignationList> </verification>

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" httpMethod="GET"/>
     </links>
</response>
LIVE