Microsoft Sharepoint Online

Share and manage content, knowledge, and applications to empower teamwork, quickly find information, and seamlessly collaborate across the organization.

Integrate the Microsoft Sharepoint Online API with the ServiceNow API

Setup the Microsoft Sharepoint Online API trigger to run a workflow which integrates with the ServiceNow API. Pipedream's integration platform allows you to integrate Microsoft Sharepoint Online and ServiceNow remarkably fast. Free for developers.

Create Table Record with ServiceNow API on New List Item from Microsoft Sharepoint Online API
Microsoft Sharepoint Online + ServiceNow
 
Try it
Create Table Record with ServiceNow API on Updated List Item from Microsoft Sharepoint Online API
Microsoft Sharepoint Online + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New List Item from Microsoft Sharepoint Online API
Microsoft Sharepoint Online + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on Updated List Item from Microsoft Sharepoint Online API
Microsoft Sharepoint Online + ServiceNow
 
Try it
Get Table Records with ServiceNow API on New List Item from Microsoft Sharepoint Online API
Microsoft Sharepoint Online + ServiceNow
 
Try it
New List Item from the Microsoft Sharepoint Online API

Emit new event when a new list is created in Microsoft Sharepoint.

 
Try it
Updated List Item from the Microsoft Sharepoint Online API

Emit new event when a list is updated in Microsoft Sharepoint.

 
Try it
Create Item with the Microsoft Sharepoint Online API

Create a new item in Microsoft Sharepoint. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Create List with the Microsoft Sharepoint Online API

Create a new list in Microsoft Sharepoint. See the documentation

 
Try it
Get Table Record By SysId with the ServiceNow API

Retrieves the record identified by the specified sys_id from the specified table.

 
Try it
Get Table Records with the ServiceNow API

Retrieves multiple records for the specified table.

 
Try it

Overview of Microsoft Sharepoint Online

The Microsoft SharePoint Online API opens up a world of possibilities for integrating your SharePoint content with other services and automating tasks. With Pipedream, you can harness this API to create powerful workflows that trigger on events in SharePoint, manipulate data, and connect with countless other apps. Create custom automations for document management, team notifications, content moderation, and more, without the need to manage infrastructure.

Connect Microsoft Sharepoint Online

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sharepoint: {
      type: "app",
      app: "sharepoint",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://graph.microsoft.com/v1.0/me`,
      headers: {
        Authorization: `Bearer ${this.sharepoint.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of ServiceNow

The ServiceNow API enables developers to tap into the robust capabilities of ServiceNow's IT service management platform. With the API, you can create, read, update, and delete records, manage workflows, and integrate with other services. By leveraging these capabilities, you can automate routine tasks, sync data across multiple platforms, and enhance operational efficiencies.

Connect ServiceNow

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    servicenow: {
      type: "app",
      app: "servicenow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
      headers: {
        Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
      },
    })
  },
})