Kirill Bondar 2/12/2021 6:29:05 AM There are two encoding functions we use in Call URL actions -- JSON and JSONFormat.
JSON(text) does just what you propose - encodes special characters in a string. JSONFormat(text | number | bool | date | time | timestamp) produces JSON represenation for any value type -- quoted string, true, false, properly formatted number etc. Latter allows handling NULLs:
JSONFormat("text") produces string "text" JSONFormat(null) produces word "null"
With best regards, Kirill
|