Hello Experts,
I have a requirement where I need to change the value of one single key in an object.
INPUT:
[
{
"soapenv:Envelope": {
"@xmlns:soapenv": "http://schemas.xmlsoap.org/soap/envelope/",
"@xmlns:xsd": "http://www.w3.org/2001/XMLSchema",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"soapenv:Body": {
"ns1:MT_SWE_FI_PEGA_ABAON": {
"@xmlns:ns1": "http://xyz.com",
"SYSTEMID": "AB1",
"CLIENT": "090",
"INPUT": {
"S_BUKRS": "00",
"S_ANLN1": "12345678",
"S_ANLN2": "0000",
"S_ZUGDT": "2022-06-20",
"ERLBT": "100"
}
}
}
}
}
]
Here I just need to change key âCLIENTâ to âCLIENTIDâ.
Thanks in Advance