Bulk Delete SharePoint Files with Power Automate Cloud Flow – Step-by-Step Guide
Автор: Eda Oliveira, MCT
Загружено: 2026-01-09
Просмотров: 44
Ready to clean up your SharePoint library like a pro? In this video, I’ll show you how to build a Power Automate Cloud Flow that bulk deletes files from a SharePoint document library – fast, efficient, and fully automated!
You’ll learn:
How to set up your flow from scratch
Key actions to connect SharePoint and Power Automate
Whether you’re managing large libraries or just want to streamline your workflow, this tutorial is packed with practical insights and best practices.
👉URI to list files
_api/web/GetFolderByServerRelativeUrl('/sites/yoursite/yourlibrary/')/Files?$select=Name,ServerRelativeUrl,UniqueId
👉 JSON Payload for DELETE Action
{
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"ServerRelativeUrl": {
"type": "string"
},
"UniqueId": {
"type": "string"
}
},
"required": [
"Name",
"ServerRelativeUrl",
"UniqueId"
]
}
}
}
}
👉URI to DELETE files
_api/web/GetFileById('item')
Доступные форматы для скачивания:
Скачать видео mp4
-
Информация по загрузке: