Search K
Appearance
Appearance
The Get SharePoint Files by Folder node retrieves all files from a specified folder in a SharePoint document library using Microsoft Graph API.
This node is commonly used in workflows that require further automation or processing of SharePoint-hosted files (e.g., metadata extraction, batch downloading, filtering, etc.).
Get Sharepoint Files By Folder
To retrieve a list of files stored in a SharePoint folder and make that list available in the workflow as an output variable (SharepointFiles
).
Label | Type | Description |
---|---|---|
Sharepoint Folder | Text | The full SharePoint folder reference, in the expected format used internally for parsing Site, Document Library, and Folder Path. Example: https://<tenant>.sharepoint.com/sites/<site>/Shared Documents/<folder> |
Output Variable | Description |
---|---|
SharepointFiles | A collection of file objects (Microsoft Graph DriveItem ) retrieved from the target folder. |
This task will:
Sharepoint Folder
input is provided.site
, docLib
, and folderPath
.DriveItem
objects) in the SharepointFiles
output variable.If any of the parsing steps or API calls fail, the task will return a failed status with the corresponding error message.
Imagine a workflow where you need to:
This node allows you to fetch the list of files at runtime, making them available for further downstream actions in your automation.
ThirdParty-Autodesk
service account to authenticate with Microsoft Graph API.GetSharePointLocations(...)
.Symptom | Possible Cause |
---|---|
"Failed to get Sharepoint locations" | Malformed or unsupported SharePoint folder path |
"Required Service Accounts not found" | Missing or misconfigured service token for Microsoft Graph |
"Failed to get files from Sharepoint" | API failure or insufficient permissions |