The transform documentation listed here is outdated and is nonger actively maintained. Please refer to https://developer.sailpoint.com/idn/docs/transforms for IdentityNow Transform documentation.
Perfect!
Team, how can we dynamically set the value for uid? For instance, i want to assign the input attribute value
Thanks,
Gowri
Hi @gowrisankar
Yes, UID could be set dynamically as at the simplified sample below:
{
"attributes": {
"uid": {
"attributes": {
"attributeName": "branchCode",
"sourceName": "Workday HR"
},
"type": "accountAttribute"
},
"name": "Cloud Services Deployment Utility",
"attributeName": "branchTimeZone",
"operation": "getReferenceIdentityAttribute"
},
"id": "getBranchTimeZone",
"type": "rule"
}
Thanks a lot
We have created two custom identity attributes A and B (examples). And "A" uses the above transform:
{
"attributes": {
"name": "Cloud Services Deployment Utility",
"operation": "getReferenceIdentityAttribute",
"uid": "manager",
"attributeName": "B"
},
"type": "rule",
"id": "Test"
}
The attribute "B" gets the distingishedName of the identity.
The above configuration works for Sandbox but it doesnot work in PROD.
I have tried to fetch the attribute details in which both PROD and Sandbox are similar. The searchable value for both the attributes is False.
Can you please let me know if I am missing out anything in PROD? The Value B is populated for the Identity but Value A is not NULL in Prod.
We have created two custom identity attributes A and B (examples). And "A" uses the above transform:
{
"attributes": {
"name": "Cloud Services Deployment Utility",
"operation": "getReferenceIdentityAttribute",
"uid": "manager",
"attributeName": "B"
},
"type": "rule",
"id": "Test"
}
The attribute "B" gets the distingishedName of the identity.
The above configuration works for Sandbox but it doesnot work in PROD.
I have tried to fetch the attribute details in which both PROD and Sandbox are similar. The searchable value for both the attributes is False.
Can you please let me know if I am missing out anything in PROD? The Value B is populated for the Identity but Value A is not NULL in Prod.
@Essenelk2 I tried setting up the UID dynamically and it didnt work. Did it work for you when you tested?