Uptime Robot

Verifies downtime from multiple locations

Integrate the Uptime Robot API with the Airtable API

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

New Field from the Airtable API

Emit new event for each new field created in a table

 
Try it
New or Modified Field from the Airtable API

Emit new event for each new or modified field in a table

 
Try it
New or Modified Records from the Airtable API

Emit new event for each new or modified record in a table

 
Try it
New or Modified Records in View from the Airtable API

Emit new event for each new or modified record in a view

 
Try it
New Records from the Airtable API

Emit new event for each new record in a table

 
Try it
Create Comment with the Airtable API

Create a new comment on a record. See the documentation

 
Try it
Create Field with the Airtable API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.

 
Try it
Create Single Record with the Airtable API

Adds a record to a table.

 
Try it
Create Single Record Or Update with the Airtable API

Updates a record if recordId is provided or adds a record to a table.

 
Try it

Overview of Uptime Robot

Uptime Robot is a monitoring service provider that offers an API to help
developers and businesses monitor their websites and services. With the Uptime
Robot API, developers can create custom solutions to check and monitor their
systems, as well as measure performance and detect downtime.

The Uptime Robot API can be used to build a variety of applications, from basic
website-monitoring tools to sophisticated alerting and reporting systems. Here
are some examples of the applications that you can build with the Uptime Robot
API:

  • Automated Website Monitoring: Monitor websites and web services for
    availability and performance. Notify users when an issue is detected.
  • Reporting Dashboards: Aggregate monitoring data and visualise it in custom
    dashboards.
  • Automated Notification System: Set up a system to be notified immediately
    about downtimes or performance issues.
  • Alerting System: Set custom alerts for various metrics and thresholds.
  • Slack/Hipchat Integrations: Connect notifications to popular messaging
    platforms.
  • Custom Monitoring Solutions: Build custom solutions to check any external API
    or system.

Connect Uptime Robot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    uptime_robot: {
      type: "app",
      app: "uptime_robot",
    }
  },
  async run({steps, $}) {
    const data = {
      "api_key": `${this.uptime_robot.$auth.api_key}`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.uptimerobot.com/v2/getAlertContacts`,
      headers: {
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Connect Airtable

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: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})