Hello all,
I am implementing a provisioning policy using replaceALL transform. On “Disable” action, the identity’s active directory phone number attribute needs to be replaced with empty value aka removed.
Here is the transform for telephoneNumber removal upon Disable action.
{
"name": "telephoneNumber",
"transform": {
"attributes": {
"table": {
".*": " "
}
},
"type": "replaceALL"
},
"attributes": {},
"isRequired": false,
"type": "string",
"isMultiValued": false
}
The above is giving an error “unknown transform:ReplaceAll”
The below static transform does work though.
{
"name": "telephoneNumber",
"transform": {
"attributes": {
"value": "removed"
},
"type": "static"
},
"attributes": {},
"isRequired": false,
"type": "string",
"isMultiValued": false
}
I am not sure what is missing in the replaceALL transform? Any leads would definetely help!