I am getting the below result from the previous node:
{“consent_id”:0,“source”:“Test”,“source_id”:0,“consent_timestamp”:1663164968,“user_uuid”:“{"email":"test@test.com"}”}
I am trying to remove "" and " from the email expression to be equal as below result:
{“consent_id”:0,“source”:“Test”,“source_id”:0,“consent_timestamp”:1663164968,“user_uuid”:{“email":"test@test.com”}}
Is there a way to do that? Appreciate any help. Thanks
Hi @wdb1, are you by any chance looking for JSON.parse() here? You can use it in an expression like {{ JSON.parse($json.user_uuid) }}. Check out this example: