Hi San,
Both requirements are possible.
For 1, the below metadata permissions config would allow READ permission on only the Name attribute and hide everything else.
[
{
"uri": "configuration/entityTypes/Individual",
"permissions": [
{
"role": "ROLE_API",
"access": [
"READ"
]
}
]
},
{
"uri": "configuration/entityTypes/Individual/attributes",
"permissions": [
{
"role": "ROLE_API",
"access": []
}
]
},
{
"uri": "configuration/entityTypes/Individual/attributes/Name",
"permissions": [
{
"role": "ROLE_API",
"access": [
"READ"
]
}
]
}
]
For 2, the below config would grant READ permissions on only those profiles that belong to the country US
[
{
"uri": "configuration/entityTypes/Organization",
"permissions": [
{
"role": "ROLE_API",
"filter": "equals(attributes.Address.Country,'US')",
"access": [
"READ"
]
}
]
}
]
------------------------------
Thanks,
Snehil Kamal
Senior Solution Architect
Reltio
Bangalore
------------------------------
Original Message:
Sent: 07-03-2025 03:15
From: San Jog
Subject: Security for Entity level atrribute and rows from the Entity
Hi Team,
I want to test some of the security scenarios as below. I am using test tenant and UI for this testing (not REST API call). Please tell me is it possible?
1) I want to show only specific attributes from Entity to user depending upon his role and group .
2) I want to show only specific rows depending upon the atrribute value
Please provide links for this operations and tell is it feasible?
------------------------------
San Jog
nagarro
- Select -
------------------------------