Hi All,
Is there any way to get identity attribute values using operation “getReferenceIdentityAttribute” with ADSamaccountname as input.
We have a requirement where only managers NTID/sAMAccountName is available under Workday source (authoritative) and we have to populate that account’s identity attribute values (FirstName, Last Name). Is there any other way to meet this requirement.
If we give “uid” as an employeenumber the below transform works but with “uid” as NTID or sAMAccountName its not fetching values
Tried below transform variations but none of them returning values
-
{
“name”: “Determine FirstName using an Account Name”,
“type”: “rule”,
“attributes”: {
“attributeName”: “firstname”,
“name”: “Cloud Services Deployment Utility”,
“operation”: “getReferenceIdentityAttribute”,
“uid”: “primaryAdminNtid”
},
“internal”: false
} -
{
“name”: “Determine FirstName using an Account Name”,
“type”: “rule”,
“attributes”: {
“attributeName”: “firstname”,
“name”: “Cloud Services Deployment Utility”,
“operation”: “getReferenceIdentityAttribute”,
“uid”: {
“type”: “accountAttribute”,
“attributes”: {
“sourceName”: “Active Directory”,
“attributeName”: “sAMAccountName”
}
}
},
“internal”: false
}
{
“name”: “Determine FirstName using an Account Name”,
“type”: “rule”,
“attributes”: {
“uid”: {
“input”: {
“attributes”: {
“attributeName”: “sAMAccountName”,
“sourceName”: “Active Directory”
},
“type”: “accountAttribute”
}
},
“attributeName”: “firstname”,
“name”: “Cloud Services Deployment Utility”,
“operation”: “getReferenceIdentityAttribute”
},
“internal”: false
}