Microsoft 365

Your productivity cloud across work and life

Integrate the Microsoft 365 API with the Evernote API

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

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Note Created from the Evernote API

Emit new event when a note is created in Evernote.

 
Try it
New Notebook Created from the Evernote API

Emit new event when a notebook is created in Evernote.

 
Try it
New Tag Created from the Evernote API

Emit new event when a new tag is created in Evernote. Useful for tracking new organizational labels.

 
Try it
Create Note with the Evernote API

Creates a new note in Evernote. See the documentation

 
Try it
Create Notebook with the Evernote API

Creates a new notebook in Evernote. See the documentation

 
Try it
Update Note with the Evernote API

Updates an existing note in Evernote. See the documentation

 
Try it

Overview of Microsoft 365

The Microsoft 365 API taps into the productivity power of services like Outlook, OneDrive, Excel, and more. It's a treasure chest for those seeking to automate office tasks, streamline communications, and orchestrate data between applications. With Pipedream, you can create workflows that react to events in the Microsoft ecosystem, manipulate data, or automate repetitive tasks, freeing you to focus on the bigger picture.

Connect Microsoft 365

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: {
    microsoft_365: {
      type: "app",
      app: "microsoft_365",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://graph.microsoft.com/v1.0/me`,
      headers: {
        Authorization: `Bearer ${this.microsoft_365.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Evernote

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Client } from 'evernote';

export default defineComponent({
  props: {
    evernote: {
      type: "app",
      app: "evernote",
    }
  },
  async run({ steps, $ }) {
    var developerToken = this.evernote.$auth.developer_token;
    var client = new Client({ token: developerToken, sandbox: false });
    var noteStore = await client.getNoteStore();
    return await noteStore.listNotebooks();
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo