MaintainX is mobile-first work order and procedure digitization software that allows factory frontline teams to know what they need to do and how to do it.
Emit new event each time a new work order is completed.
Emit new event when a new Plan is created in Microsoft 365 Planner
Emit new event when a new Task is created in Microsoft 365 Planner
Create a new bucket in Microsoft 365 Planner. See the documentation
Create a new plan in Microsoft 365 Planner. See the documentation
Create a new task in Microsoft 365 Planner. See the documentation
The MaintainX API lets you automate workflows related to work orders, assets, and maintenance activities within the MaintainX platform. With this API on Pipedream, you can build serverless workflows to react to events, sync data, and connect MaintainX to other apps and services, creating a seamless integration hub for facility and equipment management tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
maintainx: {
type: "app",
app: "maintainx",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getmaintainx.com/v1/users`,
headers: {
Authorization: `Bearer ${this.maintainx.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
The Microsoft 365 Planner API lets you tap into the robust task management capabilities of Planner within the Microsoft 365 suite. With this API on Pipedream, you can automate tasks, sync Planner data with other services, manage plans, tasks, and buckets programmatically. This opens up possibilities for creating custom workflows to enhance productivity, streamline project tracking, and maintain synchronization across various platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_365_planner: {
type: "app",
app: "microsoft_365_planner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_365_planner.$auth.oauth_access_token}`,
},
})
},
})