Hi. I’m trying to update a field in Pipefy.
When I want to update the field, I have to put the new data inside double quotes, for example, “example”.
When I want to clear the field, I have to use null.
How can I do this in Make?
Hi. I’m trying to update a field in Pipefy.
When I want to update the field, I have to put the new data inside double quotes, for example, “example”.
When I want to clear the field, I have to use null.
How can I do this in Make?
for " use \”
instead (this is how you pass " in json) and for null just write :
“param”: null
While this is perfectly valid for using quotations inside JSON strings, I think the issue here is a bit different @Dorian_Ben_Haim
Make can be weird with quotation marks inside functions because a lot of functions rely on JS and treat things as string concatenation. So it’s basically a “there’s already a pair of quotations there that Make ignore” kind of thing
An annoying but reliable and consistent workaround is to use replace:
Using " would keep the \ in the output:
For clarity, x = “a” in both examples
It works perfectly! Thanks!!!