Skip to content
Talk to an Engineer Dashboard

SharePoint

Connect to SharePoint. Manage sites, documents, lists, and collaborative content

Connect to SharePoint. Manage sites, documents, lists, and collaborative content

SharePoint logo

Supports authentication: OAuth 2.0

Register your Scalekit environment with the SharePoint connector so Scalekit handles the authentication flow and token lifecycle for you. The connection name you create will be used to identify and invoke the connection programmatically. Then complete the configuration in your application as follows:

  1. Set up auth redirects

    • In Scalekit dashboard, go to Agent AuthCreate Connection. Find SharePoint and click Create. Copy the redirect URI. It will look like https://<SCALEKIT_ENVIRONMENT_URL>/sso/v1/oauth/<CONNECTION_ID>/callback.

      Copy redirect URI from Scalekit dashboard

    • Sign into https://entra.microsoft.com and go to Microsoft Entra IDApp registrationsNew registration.

    • Enter a name for your app.

    • Under Supported account types, select Accounts in any organizational directory (Any Azure AD directory - Multitenant).

    • Under Redirect URI, select Web and paste the redirect URI from step 1. Click Register.

      Register an application in Azure portal

  2. Get your client credentials

    • Go to Certificates & secretsNew client secret, set an expiry, and click Add. Copy the Value immediately.

    • From the Overview page, copy the Application (client) ID.

  3. Add credentials in Scalekit

    • In Scalekit dashboard, go to Agent AuthConnections and open the connection you created.

    • Enter your credentials:

      Add credentials in Scalekit dashboard

    • Click Save.

Connect a user’s SharePoint account and make API calls on their behalf — Scalekit handles OAuth and token management automatically.

import scalekit.client, os
from dotenv import load_dotenv
load_dotenv()
connection_name = "sharepoint" # get your connection name from connection configurations
identifier = "user_123" # your unique user identifier
# Get your credentials from app.scalekit.com → Developers → Settings → API Credentials
scalekit_client = scalekit.client.ScalekitClient(
client_id=os.getenv("SCALEKIT_CLIENT_ID"),
client_secret=os.getenv("SCALEKIT_CLIENT_SECRET"),
env_url=os.getenv("SCALEKIT_ENV_URL"),
)
actions = scalekit_client.actions
# Authenticate the user
link_response = actions.get_authorization_link(
connection_name=connection_name,
identifier=identifier
)
# present this link to your user for authorization, or click it yourself for testing
print("🔗 Authorize SharePoint:", link_response.link)
input("Press Enter after authorizing...")
# Make a request via Scalekit proxy
result = actions.request(
connection_name=connection_name,
identifier=identifier,
path="/v1.0/me/sites",
method="GET"
)
print(result)

File operations

Download a file

Fetch file metadata via the Scalekit proxy to get a pre-authenticated download URL, then stream the file directly from Microsoft’s CDN. This avoids buffering large files through the proxy and is significantly faster.

import requests
import scalekit.client, os
from dotenv import load_dotenv
load_dotenv()
connection_name = "sharepoint" # get your connection name from connection configurations
identifier = "user_123" # your unique user identifier
site_id = "<YOUR_SITE_ID>" # call GET /v1.0/sites/root to get your site ID
scalekit_client = scalekit.client.ScalekitClient(
client_id=os.getenv("SCALEKIT_CLIENT_ID"),
client_secret=os.getenv("SCALEKIT_CLIENT_SECRET"),
env_url=os.getenv("SCALEKIT_ENV_URL"),
)
filename = "report.pdf"
# Step 1: Fetch file metadata via Scalekit proxy (authenticated)
response = scalekit_client.actions.request(
connection_name=connection_name,
identifier=identifier,
path=f"/v1.0/sites/{site_id}/drive/root:/{filename}",
method="GET",
query_params={},
)
meta = response.json()
# Step 2: Stream directly from Microsoft CDN using the pre-authenticated URL
# No auth headers needed — the URL is cryptographically signed and expires in ~1 hour
download_url = meta["@microsoft.graph.downloadUrl"]
with requests.get(download_url, stream=True) as r:
r.raise_for_status()
with open(filename, "wb") as f:
for chunk in r.iter_content(chunk_size=8 * 1024 * 1024): # 8 MB chunks
f.write(chunk)
print(f"Downloaded: {filename} ({os.path.getsize(filename):,} bytes)")

Upload a file

Upload a file to SharePoint’s Shared Documents folder. Scalekit injects the OAuth token automatically — your app never handles credentials directly.

import mimetypes
import scalekit.client, os
from dotenv import load_dotenv
load_dotenv()
connection_name = "sharepoint" # get your connection name from connection configurations
identifier = "user_123" # your unique user identifier
site_id = "<YOUR_SITE_ID>" # call GET /v1.0/sites/root to get your site ID
scalekit_client = scalekit.client.ScalekitClient(
client_id=os.getenv("SCALEKIT_CLIENT_ID"),
client_secret=os.getenv("SCALEKIT_CLIENT_SECRET"),
env_url=os.getenv("SCALEKIT_ENV_URL"),
)
filename = "report.pdf"
with open(filename, "rb") as f:
file_bytes = f.read()
mime_type = mimetypes.guess_type(filename)[0] or "application/octet-stream"
response = scalekit_client.actions.request(
connection_name=connection_name,
identifier=identifier,
path=f"/v1.0/sites/{site_id}/drive/root:/{filename}:/content",
method="PUT",
query_params={},
form_data=file_bytes,
headers={"Content-Type": mime_type},
)
meta = response.json()
print(f"Uploaded: {meta['name']}{meta['webUrl']}")