When executing POST request while using RAW body format as explained in previous post, everything works great except when I have field keys or field values with simple quotes.
As you might know, in french language, we have a lot of punctuation marks .
If I use double quotes for the keys/values, and leave the simple quotes of punctuation like in the key below, the body gets wrong (see picture)
"email de l'inscrivant": "${properties->get('email')}"
I tried to use exit symbols as below (I think thatâs how we name that), then the body looks fine again, but execution does not work
âmessageâ: âUnexpected token â in JSON at position 104â
"email de l\''inscrivant": "${properties->get('email')}",
Indeed, it works when just leaving the âugglyâ body like in 1st picture, it does not impact data actually sent. Sorry that it confused me in the first place.
I also tried again with the field values containing simple quotes and it also works fine