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.
Go to siteWith 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}`,
},
})
},
})
Automatic Waiver Follow-up Emails: When a customer signs a waiver, trigger an automated email through an email service like SendGrid or Mailgun, thanking them or providing additional information. This improves customer experience without manual intervention.
Sync Waivers to Google Sheets for Record-Keeping: Automatically send completed waivers to a Google Sheet. This keeps records up-to-date and makes it easy to monitor and analyze waiver submissions in real-time, without manual data entry.
Slack Notifications for New Waivers: Set up a workflow that sends a notification to a specific Slack channel whenever a waiver is signed. This is useful for real-time updates, allowing team members to promptly take any necessary follow-up actions.
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
Creates a new event category in WaiverFile. See the documentation
Searches for waivers in WaiverFile based on specific keywords. See the documentation
Updates the details of an existing event in WaiverFile. See the documentation
WaiverFile uses API keys for authentication. When you connect your WaiverFile account, Pipedream securely stores the keys so you can easily authenticate to WaiverFile APIs in both code and no-code steps.
To retrieve your Site ID and Key,