SharePoint connected system read data from files kept at SharePoint

A Score Level 1

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

Parents
  • 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!

Reply
  • 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!

Children
No Data