0

How can i convert INPUT below into the following OUTPUT ? I've tried using EvaluateJSONPath -> MergeContent, but not getting the right result.

Can anyone help and share screen-captures/codes please ?

INPUT

{"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"
         }}
}
}

Expected OUTPUT

{"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"
         }
  }
}

0 Answers0