Skip to content

DELETE – Send An HTTP Request to SharePoint using Power Automate to delete an Item

This post is about creating a manual flow to delete an item in SharePoint using DELETE method of HTTP request.

You will need the uri.

If your list name has space in between

uri = _api/web/lists/getbytitle(‘List%20Name’)/items(1)

If your list name has no space in between

uri = _api/web/lists/getbytitle(‘ListName’)/items(1)

Where items(1) is the item whose ID = 1

content-type = application/json;odata=verbose
IF-MATCH = *

Please refer to image below

If you liked the post, please share it with others 🙂

Published inPower Automate