Is there a way to map a field conditionally, meaning we only want to send the "Give access" field if a certain condition is true. If the condition is not true we don't want to send "" to the field "give access" because this resets their login. We also don't want to send "true" because they may not have access (even if their status == "Employee", etc). In other words, we only want to send the the field if we need to send false.
The mapping below will set the "Give access" to false in both cases.
{{#compare Status "===" "Terminated"}}false{{else}}{{/compare}}
{{#compare Status "===" "Terminated"}}false{{else}} *** do not map field at all... :-)