作者:@matty
Is there a way to make it so that the Create JSON function does not escape double quotes when they are inside an inline function?
For example I want to set a json value as %func%:JsonValue(Value,"path") but when I update it becomes %func%:JsonValue(Value,\"path\") in the Preview Result and also adds the backslashes to the saved JSON.
Thanks,
Matty
- DDaniel Horton @daniel.horton
Hi Matty,
Thank you for your feedback.
We have tested this while looking into the issue and found the resolution is to not wrap your path value in quotes. Here is a working example from our tests:
{
"employee": {
"name": "%func%:JsonValue(%Json%,FullName)",
"salary": 56000,
"married": true
}
}