schattopadhy
(SHANTANU CHATTOPADHYAY)
1
Hi All,
Is there any way to the user details of an user who is not the manager of the user but some other user example(future manager) using the below rule
t{
"attributes": {
"name": "Cloud Services Deployment Utility",
"operation": "getReferenceIdentityAttribute",
"uid": "manager",
"attributeName": "email"
},
"type": "rule",
"name": "Get Reference Identity Attribute Transform"
}ype or paste code here
3 Likes
jesvin90
(Jesvin Joseph)
2
Hi @schattopadhy,
If you can pass the uid of the required user in the transform, you should be able to get the required values. See an example below :
{
"name": "Future approver email",
"type": "rule",
"attributes": {
"attributeName": "email",
"name": "Cloud Services Deployment Utility",
"operation": "getReferenceIdentityAttribute",
"uid": {
"attributes": {
"attributeName": "futureManager",
"sourceName": "Employees_Test"
},
"type": "accountAttribute"
}
},
"internal": false
}
1 Like
schattopadhy
(SHANTANU CHATTOPADHYAY)
3
@jesvin90 i have tried but it did not give me the right output
jesvin90
(Jesvin Joseph)
4
Hi @schattopadhy,
Are you getting the Sailpoint username as the transform output under the uid field.?
Try hardcoding the value and it should work. Then build your transform to get the uid value that worked.
{
"name": "Future approver",
"type": "rule",
"attributes": {
"attributeName": "email",
"name": "Cloud Services Deployment Utility",
"operation": "getReferenceIdentityAttribute",
"uid": "1c2a3b4e"
},
"internal": false
}
system
(system)
Closed
5
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.