Hey @Product, I have a WF that gets data via an API call from one platform, and then posts said data into another platform via another API call. I use a 'Retrieve values from JSON' WA to initialize multiple variables to be passed into the second API call request body. On very rare instances, values from the data retrieved from the first API contains quotations, e.g.
{
"Key": " \"Value\""
}
This results in my variable having quotations, i.e. "Value", which results in an error when trying to pass it into the second API call. Is there any way I could keep the characters escaped when retrieving them via the 'Retrieve values from JSON' WA? Otherwise I'll have to do a text replace for each of the variables retrieved which is not ideal.