Microsoft SharePoint · Arazzo Workflow
SharePoint Verify Site Connection and Identity
Version 1.0.0
Escalate from a cheap reachability probe to identity, site detail, and visible lists.
View Spec
View on GitHub
CollaborationDocument ManagementEnterprise Content ManagementIntranetMicrosoftArazzoWorkflows
Provider
Workflows
site-connection-check
Confirm the SharePoint site is reachable, the token is valid, and lists are visible.
Probes the site title, resolves the calling user's profile, reads the full site properties, and enumerates the lists the caller is permitted to see.
1
probeSite
getWebTitle
Cheapest possible reachability check. A 200 here proves the site URL resolves and the bearer token is accepted before anything heavier runs.
2
whoAmI
getMyUserProfile
Resolve the identity behind the token. Confirms the integration is acting as the account you expect rather than a stale or over-scoped principal.
3
readSite
getWeb
Read the full site (web) properties, capturing the site id and the server-relative URL that folder and file operations depend on later.
4
enumerateLists
getLists
Enumerate the non-hidden lists and libraries the caller can see. An empty result with a 200 usually means the token's scopes are narrower than intended rather than that the site is empty.