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.
Go to siteThe 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:
Here are some examples of what you can build using the UpKeep API:
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}`,
},
})
},
})
Finds assets according to props configured, if no prop configured returns all assets, See the docs
Finds locations according to props configured, if no prop configured returns all locations, See the docs
UpKeep uses OAuth authentication. When you connect your UpKeep account, Pipedream will open a popup window where you can sign into UpKeep and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any UpKeep API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://api.onupkeep.com/api/v2/auth/
content-type: application/x-www-form-urlencoded
accept: application/json
email={{custom_fields.email}}
&
password={{custom_fields.password}}