Web Service Documentation / Categories / Property Use Services / Edit Custom Use Detail - Revision
Updated on August 28, 2023
This web service updates a specific custom use detail based on the information provided in the XML request. The update is performed by creating a revision history. It returns the unique identifier to the custom use detail and a link to the corresponding web service to retrieve it. The corresponding property must already be shared to you.
A maximum of 2 custom use details can be created for a property. To learn more, please reference this FAQ.
23.0
POST
/customUse/(propertyId)/details
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 | customUse.xsd |
Response | response.xsd |
The following example updates a specific custom use detail for a property that has an id of 11. This update creates a revision history.
POST /customUse/11/details<?xml version="1.0" encoding="UTF-8"?> <customUseDetail1 currentAsOf="2000-01-01" temporary="false" default="No"> <value>55</value> <customName>test detail</customName> </customUseDetail1>
The following example returns the information for the custom use detail.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
<links>
<link id="130086500" httpMethod="GET" link="/customUse/details/130086500" linkDescription="This is the GET url for this Custom Use Detail."/>
</links>
</response>