I'd like to update several items on a list through the rest api, this is how I update one item:
update: {
method: 'POST',
contentType: "application/json;odata=verbose",
headers: {
"Accept": "application/json;odata=verbose",
"Content-Type": "application/json;odata=verbose",
"X-RequestDigest": function() {return $("#__REQUESTDIGEST").val()},
"X-HTTP-Method": "MERGE",
"If-Match": '*'
},
url: "serverRelativeURL/_api/lists/getByTitle('ListName')/items(:ID)"
}
Where ":ID" is the id of the list item
Is is possible to update multiple items, without doing this request in a loop for each item?