with Microsoft Outlook and Buddee?
Emit new event when an employee is updated in the system. See the documentation
Emit new event when a new employee is added to the system. See the documentation
Emit new event when a new leave request is created in the system. See the documentation
Emit new event when a new time registration is created in the system. See the documentation
Emit new event when a new email containing one or more attachments arrives in a specified Microsoft Outlook folder.
Adds a label/category to an email in Microsoft Outlook. See the documentation
Suspend the workflow until approved by email. See the documentation
Add a contact to the root Contacts folder, See the documentation
The Microsoft Outlook API on Pipedream allows you to automate email-related tasks, manage calendars, and handle contacts effortlessly. With the API, you can trigger workflows on new emails, send emails programmatically, and synchronize calendars across platforms, among other functions. Pipedream's serverless platform facilitates the connection between Outlook and a myriad of other apps for efficient automation workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_outlook: {
type: "app",
app: "microsoft_outlook",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_outlook.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
buddee: {
type: "app",
app: "buddee",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.buddee.nl/users`,
headers: {
Authorization: `Bearer ${this.buddee.$auth.oauth_access_token}`,
},
})
},
})