Is there a way to set a Zap’s input’s value to NULL
? For example, I’d like to clear the contents of the Notes
field when a Zap is run (in addition to other modifications).
Hi
Great question!
To be clear, it’s not possible for a user to map null
into an input field. For context, this is because the Zap editor ignores null
to avoid unexpected side effects.
However, while users cannot map null
into the editor, you can certainly still send null
your trigger or action’s API request.
With that in mind, there are a few approaches that might be helpful.
First, if you only want to clear the Notes field when it has no input, before making the API request, you can check the value of the field and conditionally send null
.
Second, if you want to give users a way to specify that the field should be cleared, you can pick an arbitrary string to use for that purpose. For example, you could use something like $$CLEAR$$
and include help text under the field, telling the user to enter this string if they want to clear the field. Then, in the request, you can check if the field’s value matches the clearing-string and conditionally send null
.
Does this give some ideas?
Thanks for the idea.
It would be nice if you had a token like {{zap_null}}
, similar to {{zap_meta_human_now}}
.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.