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 when an existing event in WaiverFile is edited. See the documentation
Emit new event at a specified time before a card is due.
Emit new event when a new event is created in Waiverfile. See the documentation
Creates a new event category in WaiverFile. See the documentation
Searches for waivers in WaiverFile based on specific keywords. 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}`,
},
})
},
})
With the WaiverFile API, you can automate interactions with your WaiverFile account directly from Pipedream. This API provides access to manage and retrieve waivers, customer data, and events, allowing you to integrate WaiverFile with other services for streamlined workflows. You could automate the sending of waiver links, synchronize signed waivers with a database, or trigger actions based on waiver completions. The flexibility of the WaiverFile API means you can create powerful automations tailored to your business needs on Pipedream's serverless platform.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
waiverfile: {
type: "app",
app: "waiverfile",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.waiverfile.com/api/v1/GetSiteDetails`,
headers: {
"Accept": `application/json`,
},
params: {
apiKey: `${this.waiverfile.$auth.site_key}`,
siteID: `${this.waiverfile.$auth.site_id}`,
},
})
},
})