У нас вы можете посмотреть бесплатно Bulk Delete SharePoint Files with Power Automate Cloud Flow – Step-by-Step Guide или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
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')