Hi,
I've an Object Array structure like following one.
[
{
"Approvers": [
{
"DisplayName": "Person 1",
"Email": "Person 1 email",
"Status": "Not Started"
},
{
"DisplayName": "Person 2 email",
"Email": "Person 2 email",
"Status": "Not Started"
}
],
"Status": "Not Started"
},
{
"Approvers": [
{
"DisplayName": "Person 3 email",
"Email": "Person 3 email",
"Status": "Not Started"
}
],
"Status": "Not Started"
}
]
I would like to update individual properties of Array Object and keep the entire updated object. for example, I just want to update the Person 1 email in first Approvers. I tried with setProperty function but that doesn't seem to work with Arrays.
Any suggestions???
Appreciate your time. Thanks