Since #44 json payload in the request body is submitted wrapped with double quotes. Example: Current: ``` "{\n \"key1\": \"value1\",\n \"key2\": \"value2\"\n}" ``` Previous: ``` { "key1": "value1", "key2": "value2" } ```