Reltio Connect

 View Only
  • 1.  Security for Entity level atrribute and rows from the Entity

    Reltio Partner
    Posted 5 days ago

    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 -
    ------------------------------



  • 2.  RE: Security for Entity level atrribute and rows from the Entity

    Reltio Employee
    Posted 3 days ago

    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
    ------------------------------