Hi All,
We have a requirement to send empty string or blank value for END date attribute to SNOW via attribute sync. I am trying to populate empty string for Identity attribute (used for sync) using below transform which is working as expected. But the value is not getting updated in SNOW when the sync is happening.
Is this something SailPoint is failing, or SNOW is not accepting the value?
{
"name": "",
"type": "firstValid",
"attributes": {
"values": [
{
"type": "dateFormat",
"attributes": {
"input": {
"type": "accountAttribute",
"attributes": {
"sourceName": "",
"attributeName": "INACTIVE_DATE"
}
},
"inputFormat": "dd-MM-yyyy",
"outputFormat": "yyyy-MM-dd"
}
},
""
],
"ignoreErrors": true
},
"internal": false
}