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 Discord Bot API

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

Create Purchase Order with UpKeep API on New Message in Channel from Discord Bot API
Discord Bot + UpKeep
 
Try it
Create Request with UpKeep API on New Message in Channel from Discord Bot API
Discord Bot + UpKeep
 
Try it
Create Work Order with UpKeep API on New Message in Channel from Discord Bot API
Discord Bot + UpKeep
 
Try it
Find Asset with UpKeep API on New Message in Channel from Discord Bot API
Discord Bot + UpKeep
 
Try it
Find Location with UpKeep API on New Message in Channel from Discord Bot API
Discord Bot + UpKeep
 
Try it
New Message in Channel from the Discord Bot API

Emit new event for each message posted to one or more channels

 
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
Create Purchase Order with the UpKeep API

Create a Purchase Order, See the docs

 
Try it
Create Request with the UpKeep API

Create a Request, See the docs

 
Try it
Add Role with the Discord Bot API

Assign a role to a user. Remember that your bot requires the MANAGE_ROLES permission. See the docs here

 
Try it
Create Work Order with the UpKeep API

Create a Work Order, See the docs

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
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 Discord Bot

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord Bot

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: {
    discord_bot: {
      type: "app",
      app: "discord_bot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        "Authorization": `Bot ${this.discord_bot.$auth.bot_token}`,
      },
    })
  },
})