Hi all,
May I know if there is any way for us to push null value in the create account attribute? It is to create mail attribute. If the mailNickname is not null, it will concat the mailNickname & @testing.com. If the mailNickname is null, it will be pushing the β.β. We would like to push the null value. But pushing null value is not feasible by both UI and transform rule.
Please share your thoughts if you have encountered similar cases. Thank you so much.
Here is the existing transform that we are using:
{
"name": "mail",
"transform": {
"type": "conditional",
"attributes": {
"expression": "$prefix eq '.'",
"positiveCondition": "$prefix",
"negativeCondition": "$prefix$suffix",
"prefix": {
"type": "firstValid",
"attributes": {
"values": [
{
"attributes": {
"value": "$mailNickname"
},
"type": "static"
},
"."
]
}
},
"suffix": {
"attributes": {
"value": "@testing.com"
},
"type": "static"
}
}
},
"attributes": {},
"isRequired": false,
"type": "string",
"isMultiValued": false
}