VisualPing

Website change detection, monitoring and alerting

Integrate the VisualPing API with the Data Stores API

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

Add or update a single record with Data Stores API on New Alert Received from VisualPing API
VisualPing + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Job Created from VisualPing API
VisualPing + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Job Event from VisualPing API
VisualPing + Data Stores
 
Try it
Add or update multiple records with Data Stores API on New Alert Received from VisualPing API
VisualPing + Data Stores
 
Try it
Add or update multiple records with Data Stores API on New Job Created from VisualPing API
VisualPing + Data Stores
 
Try it
New Alert Received from the VisualPing API

Emit new event when a change alert is sent.

 
Try it
New Job Created from the VisualPing API

Emit new event for each new job created.

 
Try it
New Job Event from the VisualPing API

Emit new event for each new job event.

 
Try it
Create A New Job with the VisualPing API

Creates a new job that will belong to a given user or workspace. See the docs here

 
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
Delete Job with the VisualPing API

Delete an existing job by id. See the docs here

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

Add or update multiple records to your Pipedream Data Store.

 
Try it
Find Jobs with the VisualPing API

Find existing jobs using filters. See the docs here

 
Try it

Connect VisualPing

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: {
    visualping: {
      type: "app",
      app: "visualping",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://account.api.visualping.io/describe-user`,
      headers: {
        Authorization: `Bearer ${this.visualping.$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")
  },
})