I'm using the Active Directory: Update User action to update user attributes based on changes within Workday. I have a list of 10 or so fields that get updated, however not all of them are *required. For example, the accountExpires attribute is only set for contractors so for most employees it would actually be blank.
The challenge is that Active Directory throws an error when setting a blank value "". I've googled around and tried setting the following values for the blank per recommendations:
""
null
$null
@()
[]
"[]"
All of these return an error.
Does anyone have any insight on how to actually set a blank value for Active Directory through Workato?
Also, is there a way to exclude blank values from your input JSON all together? i.e. let's say my update action is looking for the following fields:
Name
Title
Account Expiration
If my Account Expiration is blank I should be able to send just:
Michael Burstein
Set null/blank value in Active Directory
I'm using the Active Directory: Update User action to update user attributes based on changes within Workday. I have a list of 10 or so fields that get updated, however not all of them are *required. For example, the accountExpires attribute is only set for contractors so for most employees it would actually be blank.
The challenge is that Active Directory throws an error when setting a blank value "". I've googled around and tried setting the following values for the blank per recommendations: