Web Service Documentation / Categories / Property Use Services / Get ID Hierarchy for Use Detail
Updated on February 22, 2021
This web service returns the accountId, propertyId, and propertyUseId that corresponds to a specific use detail record. The accountId returned is the Property Data Administrator (PDA). The corresponding property must already be shared with you or you must have pending share access.
23.0
GET
/idHierarchy/useDetails/(useDetailId)
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials |
Yes
Parameter Name | Description |
---|---|
useDetailId | Id of the use detail to retrieve the hierarchy |
Request/Response | Schema Name |
---|---|
Request | None |
Response | hierarchy.xsd |
The following example retrieves the hierarchy for a use detail that has an id of 411.
GET /idHierarchy/useDetails/411
The following example returns the accountId, propertyId, and propertyUseId for a use record that has an id of 411.
<?xml version="1.0" encoding="UTF-8"?>
<hierarchy>
<accountId>987</accountId>
<username>johndoe</username>
<propertyId>345</propertyId>
<propertyUseId>587</propertyUseId>
<useDetailId>411</useDetailId>
</hierarchy>