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
Download the file into Appian (Get-Contents end point). For reading Excel we have excel tool plug in contents and for docx check online for any available plug-ins.
thanks , can you help me if you are aware how to configure "Execute Read Request"
I am unable to configure the relative path it give me file not found error.
Thanks can you please help me in configuring "Execute Read Request"
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!