I need to update the object of the response which is under an array and then need to use use it as body for next request through automation.
"entityItemList": [
{
//here i need to add one filed, at top
"closingEffectiveDate": "3000-01-01",
"closingReference": "",
"closingRegistrationDate": "3000-01-01",
"closingStatus": 0,
"entityFieldType": 5,
"entityFieldTypeName": "DropDownListBox",
"entityFourthSubType": 1,
"entityMainTypeName": "Group",
"entityName": "Source",
"entityNo": 123,
"entitySecondSubType": 0,
"entitySubNo": 3,
"entitySubType": 50,
"entityThirdSubType": 5006,
"entityType": 8,
"entityTypeName": "Plan",
"id": 5,
"manualFlag": true,
"openingEffectiveDate": "2023-10-18",
"openingReference": "2075",
"openingRegistrationDate": "2023-10-18",
"openingStatus": 10,
"openingStatusName": null,
"referenceUniqueId": null,
"rowNumber": 0,
"semanticId": null,
"uniqueId": 507,
"value": "1",
"valueName": "CoreSuite"
}
I have this in my response from one of the request and i need to add one/multiple field under this object which is under an array and then need to use the updated body in another request through automation.
This is sample body, i need to update multiple fields in multiple object which are under array.