Integration platform for developers
Exposes an HTTP API for scheduling messages to be emitted at a future time
Emit new event based on a time interval before an upcoming event in the calendar. This source uses Pipedream's Task Scheduler. See the documentation for more information and instructions for connecting your Pipedream account.
Emit new event at a specified time before a card is due.
Emit new event when a Calendar event is upcoming, this source is using reminderMinutesBeforeStart
property of the event to determine the time it should emit.
Compares two PDFs and returns the result. See the documentation
Compares two pieces of text and returns the result. See the documentation
Pipedream is an API that allows you to build applications that can connect to
various data sources and processes them in real-time. You can use Pipedream to
create applications that can perform ETL (Extract, Transform, and Load) tasks,
as well as to create data-driven workflows.
Some examples of applications you can build using the Pipedream API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pipedream: {
type: "app",
app: "pipedream",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pipedream.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.pipedream.$auth.api_key}`,
},
})
},
})
The Diffchecker API allows you to compare differences between texts, images, PDFs, and other files programmatically, providing an automated way to spot changes or inconsistencies. Leveraging this API within Pipedream workflows can automate diff tasks, alerting you to changes, syncing content across platforms, or maintaining consistency in code or document versions. Pipedream's ability to connect to various services and trigger workflows based on numerous events makes it an excellent tool for integrating Diffchecker in a variety of scenarios.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
diffchecker: {
type: "app",
app: "diffchecker",
}
},
async run({steps, $}) {
const data = {
"left": `roses are red violets are blue`,
"right": `roses are green violets are purple`,
"diff_level": `word`,
}
return await axios($, {
method: "post",
url: `https://${this.diffchecker.$auth.environment}.diffchecker.com/public/text`,
headers: {
"Content-Type": `application/json`,
},
params: {
output_type: `json`,
email: `${this.diffchecker.$auth.email}`,
},
data,
})
},
})