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 Data Stores API

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

Add or update a single record with Data Stores API on New Custom Event from UpKeep API
UpKeep + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Purchase Order Event from UpKeep API
UpKeep + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Purchase Order Status Change Event from UpKeep API
UpKeep + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Request Approved Event from UpKeep API
UpKeep + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Request Event from UpKeep API
UpKeep + Data Stores
 
Try it
New Custom Event from the UpKeep API

Emit new event when a configured event occurs.

 
Try it
New Purchase Order Event from the UpKeep API

Emit new event when a purchase order is created.

 
Try it
New Purchase Order Status Change Event from the UpKeep API

Emit new event when a purchase order status is changed.

 
Try it
New Request Approved Event from the UpKeep API

Emit new event when a request is approved.

 
Try it
New Request Event from the UpKeep API

Emit new event when a request is created.

 
Try it
Create Purchase Order with the UpKeep API

Create a Purchase Order, See the docs

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Create Request with the UpKeep API

Create a Request, See the docs

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Create Work Order with the UpKeep API

Create a Work Order, See the docs

 
Try it

Overview of UpKeep

The UpKeep API allows developers to build
Maintenance & Operations solutions for their customers and end users. The API
enables developers to access data on their users' assets, tasks, and
maintenance operations. With the UpKeep API, developers can build custom
solutions for asset management, equipment tracking, work order management, and
more.

Some of the features that the UpKeep API provides include:

  • Asset Tracking: Track your assets with detailed information, such as location
    and usage stats.
  • Task Management: Keep track of tasks assigned to your users or users assigned
    to tasks.
  • Maintenance Operations: Record and track maintenance operations, such as
    repairs and replacements.
  • Work Order Management: Create and manage work orders, including assigning
    technicians and tracking progress.

Here are some examples of what you can build using the UpKeep API:

  • Maintenance & Operations Solutions: Create solutions that manage equipment,
    plan and schedule maintenance, record maintenance operations, and track asset
    usage.
  • Fleet Management Solutions: Create solutions that track fleet assets,
    including vehicles and equipment, and monitor usage.
  • Task Management Solutions: Create solutions that allow users to assign and
    manage tasks, as well as track their progress.
  • Asset Tracking Solutions: Create solutions that track assets and their usage,
    including their location, condition, and maintenance operations.

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 Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})