i get this from lambda api gateway. how can i get {\n "a":"b",\n "c":"d",\n "e":"f",\n "g":"h"\n} to json style ?
"------WebKitFormBoundarySfqiG2UABUZYF7Ir\r\n Content-Disposition: form-data; name=\"upload-file\"; filename=\"example.json\"\r\n Content-Type: application/json\r\n\r\n {\n \"a\":\"b\",\n \"c\":\"d\",\n \"e\":\"f\",\n \"g\":\"h\"\n} \r\n------WebKitFormBoundarySfqiG2UABUZYF7Ir--" i want make this {\n "a":"b",\n "c":"d",\n "e":"f",\n "g":"h"\n}
to
{ "a":"b", "c":"d", "e":"f", "g":"h" }