with Peerdom and Microsoft Sharepoint Online?
Emit new event when a new member is added to a group. See the documentation
Emit new event when a new role is created in a circle. See the documentation
Emit new event when a new list is created in Microsoft Sharepoint.
Emit new event when a list is updated in Microsoft Sharepoint.
Assigns a member to a role within a circle using the Peerdom API. See the documentation
Create a new item in Microsoft Sharepoint. See the documentation
Create a new list in Microsoft Sharepoint. See the documentation
Download a Microsoft Sharepoint file to the /tmp directory. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
peerdom: {
type: "app",
app: "peerdom",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.peerdom.app/v1/tenant`,
headers: {
"content-type": `application/json`,
"x-api-key": `${this.peerdom.$auth.api_key}`,
},
})
},
})
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.
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}`,
},
})
},
})