Hi All,
I want to read the files content(excel or docx) kept in SharePoint using SharePoint integration connected system which Operation shall I use?
Thanks
Bihitak
Discussion posts and replies are publicly visible
Hi Bihitak,
To read file contents from SharePoint via a connected system, use the “Get file content” (or similar “GetFile”/“Download file” depending on your connector) operation. This retrieves the actual binary/text content of the file.
Use Get file properties if you only need metadata (name, size, modified date, etc.).
Use Get file content when you want to read and process the file data itself (Excel, DOCX, etc.).
After fetching the content, you can pass it to downstream logic (e.g., parse Excel, convert DOCX to text, etc.).
Hope that helps!