gayare
(Gayathri re)
1
I have below first validation I want to convert the email lowercase. how to include tolower into this transform?
for example - Test.User1@company.com to test.user1@company.com
{
"attributes": {
"values": [
{
"attributes": {
"attributeName": "mail",
"sourceName": "AD"
},
"type": "accountAttribute"
},
{
"attributes": {
"attributeName": "EMAIL_ADDRESS_WORK",
"sourceName": "Workday"
},
"type": "accountAttribute"
},
{
"attributes": {
"value": "[No Email]"
},
"type": "static"
}
]
},
"name": "Work Email",
"type": "firstValid"
}
1 Like
kdfreeman
(Kapil Dahal)
2
Follow this format.
{
"name": "Email",
"type": "static",
"attributes": {
"lowerCaseEmail": {
"type": "lower",
"attributes": { Your Transform Here },
"value": "$lowerCaseEmail"
}
}
Refer this documentation on how to use lower transform: Generate Temporary Password | SailPoint Developer Community
KRM7
(Krishna Mummadi)
3
{
"type": "lower",
"attributes": {
"input": {
"attributes": {
"values": [
{
"attributes": {
"attributeName": "mail",
"sourceName": "AD"
},
"type": "accountAttribute"
},
{
"attributes": {
"attributeName": "EMAIL_ADDRESS_WORK",
"sourceName": "Workday"
},
"type": "accountAttribute"
},
{
"attributes": {
"value": "[No Email]"
},
"type": "static"
}
]
},
"type": "firstValid"
}
},
"name": "Email Lower Transform"
}
system
(system)
Closed
4
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.