Web Service Documentation / Categories / Property Services / Edit Property Identifier Value
Updated on July 17, 2013
This web service updates the property identifier value for a specific property based on the information provided in the XML request.
23.0
PUT
/property/(propertyId)/identifier/(identifierId)
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 "EAST100" to the property identifier that has an id of 64 and identifier type id of 4 for the property with an id of 32423.
PUT /property/32423/identifier/64<?xml version="1.0" encoding="UTF-8"?> <additionalIdentifier> <additionalIdentifierType id="4"/> <description>Description</description> <value>EAST100</value> </additionalIdentifier>
The following example indicates that the property identifier value was updated successfully.
<?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>