Updating Specific Array values within a content fragment using PUT call request
We have a multifield content fragment and we are using Assets HTTP API in order to update this content fragment.
We want to specifically update just the 2nd String from the list of multifield values but the PUT call request is expecting the entire request body. Is there a way to just target the second value? Attached is the PUT call request for reference.
{
"properties": {
"cq:model": "/conf/infocus/settings/dam/cfm/models/testModel",
"name": "test",
"elements": {
"items": {
"value": [
"{\"value\":\"testPath\",\"key\":\"heroImagePath\"}",
"{\"value\":\"testPath\",\"key\":\"title\"}"
]
}
}
}
}