Hi, I'm looking to update a value of an existing JSON structure once it has already been constructed.
I feel I'm using JSONUpdater for its correct purpose, but might be messing up the syntax. Attached is how it looks for me:
Does this appear to be the correct syntax for trying to modifying a nested key/value pair?
I also wonder if using the attribute "ProgramProfile" for the JSON Text field would be a better approach, as it does show up in the list of selectable attributes. I have not had luck with this approach either though.
Â
JSON sample being used:
{
   "UserInfoList" : i
      {
         "IntegrationUserID" : "123456789",
         "UserProfile" : {
            "FirstName" : "Johnny"
         },
         "ProgramProfile" : {
            "UserCategoryName" : "PLACEHOLDER"
         },
         "AddressProfileList" : Â
            {
               "CountryName" : "Japan"
            }
         ]
      }
   ]
}
Â