What can you do with it?
SharePoint enables you to manage your organization’s documents, lists, and sites programmatically. You can search for sites, create and manage lists with custom columns, add and update list items, upload and download documents, organize files in folders, share documents with links, and manage site content. This integration is perfect for document management workflows, automated list operations, content organization, and building collaborative applications that interact with SharePoint sites.How to use it?
Basic Command Structure
Parameters
Required:action
- The operation to perform with SharePointpc-connection-id
- Your PinkConnect SharePoint connection ID
Tools
List Sites
Search for SharePoint sites by name or list all sites Parameters:search-term
(optional) - Site name to search for
Get Site Lists
Retrieve all lists in a SharePoint site Parameters:site-id
(required) - The ID of the SharePoint site
Create List
Create a new list in a SharePoint site Parameters:site-id
(required) - The ID of the SharePoint sitelist-name
(required) - Name for the new listlist-template
(required) - Template type (genericList, tasks, events, announcements)columns
(optional) - Array of column definitions
Get List Items
Retrieve all items from a SharePoint list Parameters:site-id
(required) - The ID of the SharePoint sitelist-id
(required) - The ID of the list
Add List Item
Create a new item in a SharePoint list Parameters:site-id
(required) - The ID of the SharePoint sitelist-id
(required) - The ID of the listfields
(required) - Object containing field values
Upload Document
Upload a file to a SharePoint document library Parameters:site-id
(required) - The ID of the SharePoint sitefile-path
(required) - Destination path for the filecontent
(required) - Binary content of the file
Download Document
Download a file from SharePoint Parameters:site-id
(required) - The ID of the SharePoint siteitem-id
(required) - The ID of the document
Create Folder
Create a new folder in SharePoint Parameters:site-id
(required) - The ID of the SharePoint siteparent-id
(required) - The ID of the parent folder (use root for top level)folder-name
(required) - Name for the new folder
Create Share Link
Generate a shareable link for a document Parameters:site-id
(required) - The ID of the SharePoint siteitem-id
(required) - The ID of the documentlink-type
(optional) - Type of link: view or edit (default: view)scope
(optional) - Link scope: anonymous or organization (default: anonymous)