Web Service Documentation / Categories / Property Use Services / Get ID Hierarchy for Property Use
Updated on February 22, 2021
This web service returns the accountId and propertyId that corresponds to a specific property use. 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/propertyUse/(propertyUseId)
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials |
Yes
Parameter Name | Description |
---|---|
propertyUseId | Id of the property use to retrieve the hierarchy |
Request/Response | Schema Name |
---|---|
Request | None |
Response | hierarchy.xsd |
The following example retrieves the hierarchy for a property use that has an id of 587.
GET /idHierarchy/propertyUse/587
The following example returns the accountId and propertyId for a property use that has an id of 587.
<?xml version="1.0" encoding="UTF-8"?>
<hierarchy>
<accountId>987</accountId>
<username>johndoe</username>
<propertyId>345</propertyId>
<propertyUseId>587</propertyUseId>
</hierarchy>