Req Body auto change issue

Hi @Pradeep,

The backslashes are escape characters to allow for a proper display of JSON output. Check out this Stack Overflow post on a similar issue. I haven’t tested this, but my guess is this will help solve your problem:

json_data = json.dumps(response_read)
json_without_slash = json.loads(json_data)