WaiverFile lets your customers sign their release waivers from a computer, tablet or mobile device. From your website or at a kiosk, completing the forms is quick and easy.
Emit new event when an existing event in WaiverFile is edited. See the documentation
Emit new event when a new event is created in Waiverfile. See the documentation
Emit new event each time a new waiver is collected in WaiverFile. See the documentation
Emit new event when a new batch is completed in OpenAI. See the documentation
Emit new event when a new file is created in OpenAI. See the documentation
Creates a new event category in WaiverFile. See the documentation
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
Summarizes text using the Chat API. See the documentation
Classify items into specific categories using the Chat API. See the documentation
Translate text from one language to another using the Chat API. See the documentation
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}`,
},
})
},
})
OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:
Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})