I'm working with a JSON response in postman and need to figure out how to remove a specific key from the data. In this case, I want to remove head_out_timestam
- no matter where it is in the object tree.
This needs to be done using javascript. Any help is greatly appreciated!
{
"soapenv:Envelope": {
"$": {
"xmlns:soapenv": "http://schemas.xmlsoap.org/soap/envelope/"
},
"soapenv:Header": {
"f:Routing": {
"f:Receiver": {
"f:Application": "Something"
}
}
},
"soapenv:Body": {
"Something": {
"something_output": {
"service_header_out": {
"head_out_servercode": "Some",
"head_out_timestam": "2019-06-18-11.32.13.570127",
}
}
}
}
}
}