Question
HCP is a real estate investment trust focused on the property associated with health care organizations (HCOs). For security reasons, you may sometimes want to hide attributes or labels in the Profile detail page for HCP / HCO.
Answer
1. To hide selected attributes in the Reltio UI, use Role-based metadata security.
2. In the specific case of HCP/HCO, post permissions for the attributes with empty access.
The example below illustrates how to hide the first name of an HCP for role ROLE_HEART_READ.
Request
POST {ServiceURI}/permissions/{tenant}
Headers: Authorization: Bearer <Access-Token>, Content-Type: application/json
Body:
[
{
"uri": "configuration/entityTypes/HCP/attributes/Name",
"permissions": [
{
"role": "ROLE_HEART_READ",
"access": [ ]
}
]
}
]
References
https://docs.reltio.com/security/metadatasecurity.html?hl=attribute%2Cmetadata%2Csecurity
Comments
Please sign in to leave a comment.