SharePoint

Microsoft integration · 6 node(s).

00Overview

Microsoft SharePoint sites, lists, and document libraries

Every field below is exactly what you see in the Flomation editor. Fields marked ● live picker let you choose from a list pulled live from your account — no IDs to look up.

01Connecting SharePoint

SharePoint signs in with a Microsoft account you connect to Flomation — there is no API key or secret to paste. Connect the account once and every SharePoint node picks it up automatically. Two optional fields let you steer it:

FieldTypeDetails
Microsoft Account (email)string
Microsoft OAuth Credentialcredential${credentials.MICROSOFT_SHAREPOINT}
i
Connect the Microsoft account to your Flomation user once — the same grant covers every Microsoft node, so you do not repeat it per flow. The optional Microsoft OAuth Credential field never shows a token: it references a managed credential (e.g. ${credentials.GOOGLE_DRIVE}), not an environment secret. Leave both fields blank and the node just uses your connected account.

02Create

Create List Item

microsoft/sharepoint/create_list_item · Action

Create a new item in a SharePoint list

FieldTypeDetails
Site IDstringRequired
List IDstringRequired
Fields (JSON object)textRequired{"Title":"My Item","Status":"Active"}

Returns: tool_result, item_id, success, error

03Delete

Delete List Item

microsoft/sharepoint/delete_list_item · Action

Delete an item from a SharePoint list

FieldTypeDetails
Site IDstringRequired
List IDstringRequired
Item IDstringRequired

Returns: tool_result, success, error

04Get

Get List Items

microsoft/sharepoint/get_list_items · Action

Retrieve items from a SharePoint list

FieldTypeDetails
Site IDstringRequired
List IDstringRequired
Max Resultsinteger

Returns: tool_result, items, count, success, error

05List

List Lists

microsoft/sharepoint/list_lists · Action

Retrieve all lists from a SharePoint site

FieldTypeDetails
Site IDstringRequired

Returns: tool_result, lists, count, success, error

List Sites

microsoft/sharepoint/list_sites · Action

Search and list SharePoint sites

FieldTypeDetails
Search QuerystringSearch term (leave empty for all)
Max Resultsinteger

Returns: tool_result, sites, count, success, error

06Update

Update List Item

microsoft/sharepoint/update_list_item · Action

Update fields on a SharePoint list item

FieldTypeDetails
Site IDstringRequired
List IDstringRequired
Item IDstringRequired
Fields (JSON object)textRequired{"Status":"Completed"}

Returns: tool_result, success, error

07Notes & Limitations

Behaviours and constraints worth knowing before you build with these nodes.