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.
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 Vitel Phone API allows you to integrate a suite of telephony services into your applications, enabling you to automate calls, manage voicemails, send text messages, and track communications. Leveraging Pipedream's serverless platform, you can create workflows that react to events from Vitel Phone and connect them with hundreds of other apps to streamline processes, alert teams, log activities, or even analyze call data for insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vitel_phone: {
type: "app",
app: "vitel_phone",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://billing.vitelglobal.com/vitel_incomingsms.php`,
headers: {
"accept": `application/json`,
},
params: {
username: `${this.vitel_phone.$auth.username}`,
password: `${this.vitel_phone.$auth.password}`,
line: `Line`,
startdate: `{{your_startdate}}`, //ex. 09102023
enddate: `{{your_enddate}}`, //ex. 09132023
},
})
},
})