We have a requirement to integrate SharePoint with Pega, create files, and work on documents from SharePoint without downloading the file.
I checked the documentation on SharePoint Integration with Pega, but this requires that we create an add-in app on SharePoint that generates the client ID and Client Secret. As per our company policy, we cannot use this method.
Is there a workaround for embedding SharePoint in the Pega Application, creating a folder/file, and working on the file without downloading it?
@padmashriv17371852 To integrate SharePoint with Pega 8.7 without creating an add-in app, you can use REST APIs to directly interact with SharePoint from within Pega. First, configure Pega to communicate with SharePoint by registering SharePoint’s REST API endpoints in Pega. You can then use Pega’s “HTTP” connector to call SharePoint’s REST APIs for actions like creating files, uploading, and accessing document libraries. The authentication can be handled using OAuth 2.0 or basic authentication based on the setup of your SharePoint environment, without the need for an add-in app. Pega can also manage the creation and editing of files directly through these APIs, ensuring that documents are handled without being downloaded. This method enables embedding SharePoint within your Pega application while maintaining compliance with company policies.