UpKeep

The #1 Software for Maintenance and Facility Management Teams. UpKeep is the top-rated software designed to revolutionize maintenance and asset management. We provide mobile-first SaaS solutions, Industrial IoT sensors, powerful data analytics, advanced enterprise integrations, and top-notch professional services.

Integrate the UpKeep API with the MySQL API

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

Create Purchase Order with UpKeep API on New Column from MySQL API
MySQL + UpKeep
 
Try it
Create Purchase Order with UpKeep API on New or Updated Row from MySQL API
MySQL + UpKeep
 
Try it
Create Purchase Order with UpKeep API on New Row (Custom Query) from MySQL API
MySQL + UpKeep
 
Try it
Create Purchase Order with UpKeep API on New Row from MySQL API
MySQL + UpKeep
 
Try it
Create Purchase Order with UpKeep API on New Table from MySQL API
MySQL + UpKeep
 
Try it
New Column from the MySQL API

Emit new event when you add a new column to a table. See the docs here

 
Try it
New or Updated Row from the MySQL API

Emit new event when you add or modify a new row in a table. See the docs here

 
Try it
New Custom Event from the UpKeep API

Emit new event when a configured event occurs.

 
Try it
New Row from the MySQL API

Emit new event when you add a new row to a table. See the docs here

 
Try it
New Purchase Order Event from the UpKeep API

Emit new event when a purchase order is created.

 
Try it
Create Purchase Order with the UpKeep API

Create a Purchase Order, See the docs

 
Try it
Create Row with the MySQL API

Adds a new row. See the docs here

 
Try it
Create Request with the UpKeep API

Create a Request, See the docs

 
Try it
Delete Row with the MySQL API

Delete an existing row. See the docs here

 
Try it
Create Work Order with the UpKeep API

Create a Work Order, See the docs

 
Try it

Overview of UpKeep

The UpKeep API enables users to seamlessly integrate maintenance management tasks with Pipedream's serverless execution platform. By leveraging UpKeep's endpoints, you can automate workflows related to asset tracking, work order management, and preventive maintenance scheduling. The API's capabilities allow for real-time updates on equipment status, automated notifications for maintenance tasks, and data synchronization across maintenance teams and tools.

Connect UpKeep

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: {
    upkeep: {
      type: "app",
      app: "upkeep",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.onupkeep.com/api/v2/users/`,
      headers: {
        "Session-Token": `${this.upkeep.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of MySQL

The MySQL application on Pipedream enables direct interaction with your MySQL databases, allowing you to perform CRUD operations—create, read, update, delete—on your data with ease. You can leverage these capabilities to automate data synchronization, report generation, and event-based triggers that kick off workflows in other apps. With Pipedream's serverless platform, you can connect MySQL to hundreds of other services without managing infrastructure, crafting complex code, or handling authentication.

Connect MySQL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import mysql from '@pipedream/mysql';

export default defineComponent({
  props: {
    mysql,
  },
  async run({steps, $}) {
    // Component source code:
    // https://github.com/PipedreamHQ/pipedream/tree/master/components/mysql

    const queryObj = {
      sql: "SELECT NOW()",
      values: [], // Ignored since query does not contain placeholders
    };
    const { rows } = await this.mysql.executeQuery(queryObj);
    return rows;
  },
});