Hi,
I am trying to use the Download Tool to POST a json payload to a REST endpoint.

The tool works unless there is a double quote or & in the json payload in which case the endpoint returns "Unable to parse the JSON" response. I have tried escaping the double quote but it still does not work.
example of the payload is :
{ "note": { "description": "this is a test with chars & \" present", "show_to_requester": false, "mark_first_response": false, "add_to_linked_requests": false }}
I have used Postman to perform the POST with exactly the same payload and the call works as expected without an error.
If i completely remove the characters then the POST works.
Has anyone else experienced this or found a way to make it work.
thanks in advance