Sharepoint
The Sharepoint connection will keep Sharepoint folder(s) and everything in them, including subfolders, in sync.
Creating a Connection
- Select an API key from the dropdown at the top. All documents created by the connection will be attributed to the selected API key.
- Click "Select a folder" to open a Sharepoint File Picker.
- In the Sharepoint File Picker, select a folder or entire site to sync by single clicking anything but the name. If you want to go into a subfolder/site, click the name. You can not select individual files.
- Fill out any metadata you want to associate with the files in the folder. You can use this to filter the data later. This is in JSON format. You can leave it blank, or you could set it to something like
-
{ "company": "acme" }
-
- Select the import mode
- Click "Create Connection" at the top right
You will be taken back to the connectors page and the system will schedule a sync process as soon as possible.
What is synced?
- Files - all files supported by Ragie are synced. See the api reference for more information.
Metadata
Each Sharepoint file includes the following metadata
| Name | Description | Example | Comments | Filterable |
|---|---|---|---|---|
| folder | The folder name of the file | invoices | ✅ | |
| folder_path | The full path of the folder containing this file | /invoices | ✅ | |
| file_path | The full path of the file | /invoices/invoice_acme_2024.pdf | ✅ | |
| file_path_array | An array of each element in the path of the file | ["invoices", "invoice_acme_2024.pdf"] | ||
| source_type | sharepoint | sharepoint | ✅ | |
| connector_id | The id of the connector | be34a5d6-8e1a-4dba-a57f-24692a7e245f | ✅ | |
| created_at | When the file was created | 2026-04-03T22:43:58.641000+00:00 | ✅ |
Sharepoint documents also include Sharepoint file specific metadata prefixed with sp_. For example
- "sp_FileSizeDisplay": "1205891"
These are also filterable.
Updated about 17 hours ago