Web Service Documentation / Categories / Property Services / Add Property Identifier Value
Updated on July 17, 2013
This web service adds a name and value to a specific additional property identifier for a given property based on the information provided in the XML request.
23.0
POST
/property/(propertyId)/identifier
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials | |
Content-Type | application/xml |
Yes
Parameter Name | Description |
---|---|
propertyId | Id of the property |
Request/Response | Schema Name |
---|---|
Request | additionalIdentifier.xsd |
Response | response.xsd |
The following example assigns the value "32423 / BLDG-LOT 876313" to the property identifier that has an identifier type id of 4 for the property with an id of 32423.
POST /property/32423/identifier<?xml version="1.0" encoding="UTF-8"?> <additionalIdentifier> <additionalIdentifierType id="4"/> <description>EPA Standard Property ID to be used for year 2012</description> <value>32423 / BLDG-LOT 876313</value> </additionalIdentifier>
Following example indicates that the value was successfully added to the property identifier.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
<id>64</id>
<links>
<link httpMethod="GET" link="/property/32423/identifier/64" linkDescription="This is the GET url for this Property Additional Identifier."/>
</links>
</response>