如何将下面的 INPUT 转换为以下 OUTPUT ?我试过使用 EvaluateJSONPath -> MergeContent,但没有得到正确的结果。
任何人都可以帮忙分享屏幕截图/代码吗?
{"Customers":{
"AccountProfile": {
"full-name": "applicant A",
"mobile-number" : "8435739739",
"email-id" : "A@gmail.com"
},
"AccountRegistration": {
"ID No." : "11111111111",
"ID Type" : "HKID"
}
}
}{"Customers":{
"AccountProfile":{
"full-name": "applicant A",
"mobile-number" : "8435739739",
"email-id" : "A@gmail.com"
},
"Contact":{
"Phone No": {
"Residential Phone" : "77777777",
"Home Phone" : "88888888"
}}
}
}
{"Customers":{
"AccountProfile": {
"full-name": "applicant A",
"mobile-number" : "8435739739",
"email-id" : "A@gmail.com"
},
"AccountRegistration": {
"ID No." : "11111111111",
"ID Type" : "HKID"
}
, "Contact":{
"Phone No": {
"Residential Phone" : "77777777",
"Home Phone" : "88888888"
}
}
}