VisualPing

Website change detection, monitoring and alerting

Integrate the VisualPing API with the Filter API

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

Continue execution if a condition Is met with Filter API on New Alert Received from VisualPing API
VisualPing + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Job Created from VisualPing API
VisualPing + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Job Event from VisualPing API
VisualPing + Filter
 
Try it
End execution if a condition is met with Filter API on New Alert Received from VisualPing API
VisualPing + Filter
 
Try it
End execution if a condition is met with Filter API on New Job Created from VisualPing API
VisualPing + Filter
 
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
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
Delete Job with the VisualPing API

Delete an existing job by id. See the docs here

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
Try it
Find Jobs with the VisualPing API

Find existing jobs using filters. See the docs here

 
Try it

Overview of VisualPing

VisualPing is a tool that lets you monitor web pages for changes. Using its API with Pipedream, you can automate reactions to those changes. For instance, you can set up workflows that notify you or your team when specific parts of a web page update, or use changes to trigger downstream actions in other apps. Pipedream's serverless platform enables you to connect VisualPing with a vast array of apps to create custom, automated workflows without writing a lot of code.

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 Filter

The Filter API in Pipedream allows for real-time data processing within workflows. It's designed to evaluate data against predefined conditions, enabling workflows to branch or perform specific actions based on those conditions. This API is instrumental in creating efficient, targeted automations that respond dynamically to diverse datasets. Using the Filter API, you can refine streams of data, ensuring that subsequent steps in your Pipedream workflow only execute when the data meets your specified criteria. This cuts down on unnecessary processing and facilitates the creation of more intelligent, context-aware systems.

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})