I have to send multiple IDs for patch request.
I have a page variable that contains the IDs, now I have to set a ForEach/Loop to repeat the values from the array.
{“fields”: {“JobsStatus”: “Rejected” } , “id”:“pageVars.applicants[0]”}
{“fields”: {“JobsStatus”: “Rejected” } , “id”:“pageVars.applicants[1]”}
{“fields”: {“JobsStatus”: “Rejected” } , “id”:“pageVars.applicants[2]”}
but REPEAT is repeating the full array instead of each index value.
Thanks