0
votes

I am trying to update an item in a different list if any change event occurs on the source list item. I have different list id for different items on the source list that's the reason I wanted to update item using list id instead of list title. Is it possible to update an item using list id instead of list title in the SharePoint designer workflow 2013?

1

1 Answers

0
votes

You could call rest api /_api/web/lists/GetByTitle('listtitle')/items(itemid) to update list item by 'Call HTTP web service' action.

You could refer this thread for sample.