with Jenkins and Microsoft Outlook?
Emit new event when a Jenkins job sends a status notification via the notification plugin. See the documentation
Emit new event when a new email containing one or more attachments arrives in a specified Microsoft Outlook folder.
Emit new event when a new Contact is created
Emit new event when an email is received in specified folders.
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
Downloads an attachment to the /tmp directory. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jenkins: {
type: "app",
app: "jenkins",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.jenkins.$auth.api_url}/me/api/json`,
auth: {
username: `${this.jenkins.$auth.username}`,
password: `${this.jenkins.$auth.api_token}`,
},
})
},
})
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}`,
},
})
},
})