← WaiverFile + Quickbooks Sandbox integrations

Search Account with Quickbooks Sandbox API on Edit Event (Instant) from WaiverFile API

Pipedream makes it easy to connect APIs for Quickbooks Sandbox, WaiverFile and 2,500+ other apps remarkably fast.

Trigger workflow on
Edit Event (Instant) from the WaiverFile API
Next, do this
Search Account with the Quickbooks Sandbox API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a WaiverFile trigger and Quickbooks Sandbox action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the Edit Event (Instant) trigger
    1. Connect your WaiverFile account
  3. Configure the Search Account action
    1. Connect your Quickbooks Sandbox account
    2. Configure include_clause
    3. Configure where_clause
    4. Optional- Configure order_clause
    5. Optional- Configure start_position
    6. Optional- Configure max_results
    7. Optional- Configure minorversion
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when an existing event in WaiverFile is edited. [See the documentation](https://api.waiverfile.com/swagger/ui/index#!/Subscription/Subscription_editevent)
Version:0.0.1
Key:waiverfile-edit-event-instant

WaiverFile Overview

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.

Trigger Code

import common from "../common/base-webhook.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "waiverfile-edit-event-instant",
  name: "Edit Event (Instant)",
  description: "Emit new event when an existing event in WaiverFile is edited. [See the documentation](https://api.waiverfile.com/swagger/ui/index#!/Subscription/Subscription_editevent)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getEventType() {
      return "editevent";
    },
    generateMeta(body) {
      const ts = Date.parse(body.LastModified);
      return {
        id: `${body.WaiverEventID}${ts}`,
        summary: `Updated Event ${body.WaiverEventID}`,
        ts,
      };
    },
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
WaiverFilewaiverfileappThis component uses the WaiverFile app.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.

Trigger Authentication

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,

  • Navigate to your WaiverFile account and sign in
  • Go to “Settings” > “API”

About WaiverFile

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.

Action

Description:Searches for accounts.
Version:0.1.1
Key:quickbooks_sandbox-search-account

Quickbooks Sandbox Overview

QuickBooks Sandbox API provides a robust platform for developers to test QuickBooks Online integrations without affecting live data. With Pipedream, you can harness this API to automate various accounting tasks, simulate financial scenarios, or validate app behavior pre-deployment. Imagine syncing invoice statuses with your CRM, triggering alerts based on financial thresholds, or reconciling payments programmatically—all in a safe, isolated environment before going live.

Action Code

// legacy_hash_id: a_vgid15
import { axios } from "@pipedream/platform";

export default {
  key: "quickbooks_sandbox-search-account",
  name: "Search Account",
  description: "Searches for accounts.",
  version: "0.1.1",
  type: "action",
  props: {
    quickbooks_sandbox: {
      type: "app",
      app: "quickbooks_sandbox",
    },
    include_clause: {
      type: "string",
      description: "Fields to use in the include clause of the Account data query. See query language syntax, limitations, and other specifications on [Data queries](https://developer.intuit.com/app/developer/qbo/docs/develop/explore-the-quickbooks-online-api/data-queries)",
    },
    where_clause: {
      type: "string",
      description: "Filters to use in the where clause of the Account data query. Note: Multiple clauses (filters) are AND'd. The OR operation is not supported.",
    },
    order_clause: {
      type: "string",
      description: "The `order_clause` is for sorting the result. Include the Account property to sort by. The default sort order is ascending; to indicate descending sort order, include DESC, for example: `Name DESC`",
      optional: true,
    },
    start_position: {
      type: "string",
      description: "The starting count of the response for pagination.",
      optional: true,
    },
    max_results: {
      type: "string",
      description: "The number of Account entity elements in the response.",
      optional: true,
    },
    minorversion: {
      type: "string",
      description: "Use the `minorversion` query parameter in REST API requests to access a version of the API other than the generally available version. For example, to invoke minor version 1 of the JournalEntry entity, issue the following request:\n`https://quickbooks.api.intuit.com/v3/company/<realmId>/journalentry/entityId?minorversion=1`",
      optional: true,
    },
  },
  async run({ $ }) {
  //See Quickbooks API docs at: https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/account#query-an-account

    if (!this.include_clause || !this.where_clause) {
      throw new Error("Must provide include_clause, where_clause parameters.");
    }

    //Prepares OrderBy clause,start position, max results parameters to be used in the request's query parameter.
    var orderClause = "";
    if (this.order_clause) {
      orderClause = ` ORDERBY  ${this.order_clause}`;
    }

    var startPosition = "";
    if (this.start_position) {
      startPosition = ` STARTPOSITION  ${this.start_position}`;
    }

    var maxResults = "";
    if (this.max_results) {
      maxResults = ` MAXRESULTS ${this.max_results}` || "";
    }

    //Prepares the request's query parameter
    const query = `select ${this.include_clause} from Account where ${this.where_clause}${orderClause}${startPosition}${maxResults}`;

    //Sends the request against Quickbooks API
    return await axios($, {
      url: `https://sandbox-quickbooks.api.intuit.com/v3/company/${this.quickbooks_sandbox.$auth.company_id}/query`,
      headers: {
        "Authorization": `Bearer ${this.quickbooks_sandbox.$auth.oauth_access_token}`,
        "accept": "application/json",
        "content-type": "application/octet-stream",
      },
      params: {
        minorversion: this.minorversion,
        query,
      },
    });
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Quickbooks Sandboxquickbooks_sandboxappThis component uses the Quickbooks Sandbox app.
include_clauseinclude_clausestring

Fields to use in the include clause of the Account data query. See query language syntax, limitations, and other specifications on Data queries

where_clausewhere_clausestring

Filters to use in the where clause of the Account data query. Note: Multiple clauses (filters) are AND'd. The OR operation is not supported.

order_clauseorder_clausestring

The order_clause is for sorting the result. Include the Account property to sort by. The default sort order is ascending; to indicate descending sort order, include DESC, for example: Name DESC

start_positionstart_positionstring

The starting count of the response for pagination.

max_resultsmax_resultsstring

The number of Account entity elements in the response.

minorversionminorversionstring

Use the minorversion query parameter in REST API requests to access a version of the API other than the generally available version. For example, to invoke minor version 1 of the JournalEntry entity, issue the following request:
https://quickbooks.api.intuit.com/v3/company/<realmId>/journalentry/entityId?minorversion=1

Action Authentication

Quickbooks Sandbox uses OAuth authentication. When you connect your Quickbooks Sandbox account, Pipedream will open a popup window where you can sign into Quickbooks Sandbox and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Quickbooks Sandbox API.

Pipedream requests the following authorization scopes when you connect your account:

com.intuit.quickbooks.accountingopenidprofileemail

About Quickbooks Sandbox

Online accounting software

More Ways to Connect Quickbooks Sandbox + WaiverFile

Create Event Category with WaiverFile API on New Employee Created from Quickbooks Sandbox API
Quickbooks Sandbox + WaiverFile
 
Try it
Search Waivers with WaiverFile API on New Employee Created from Quickbooks Sandbox API
Quickbooks Sandbox + WaiverFile
 
Try it
Update Event with WaiverFile API on New Employee Created from Quickbooks Sandbox API
Quickbooks Sandbox + WaiverFile
 
Try it
Create Event Category with WaiverFile API on New Employee Updated from Quickbooks Sandbox API
Quickbooks Sandbox + WaiverFile
 
Try it
Search Waivers with WaiverFile API on New Employee Updated from Quickbooks Sandbox API
Quickbooks Sandbox + WaiverFile
 
Try it
Edit Event (Instant) from the WaiverFile API

Emit new event when an existing event in WaiverFile is edited. See the documentation

 
Try it
New Event (Instant) from the WaiverFile API

Emit new event when a new event is created in Waiverfile. See the documentation

 
Try it
New Waiver (Instant) from the WaiverFile API

Emit new event each time a new waiver is collected in WaiverFile. See the documentation

 
Try it
New Customer Created from the Quickbooks Sandbox API

Emit new event when a new customer is created.

 
Try it
New Customer Updated from the Quickbooks Sandbox API

Emit new event when a customer is updated.

 
Try it
Create Event Category with the WaiverFile API

Creates a new event category in WaiverFile. See the documentation

 
Try it
Search Waivers with the WaiverFile API

Searches for waivers in WaiverFile based on specific keywords. See the documentation

 
Try it
Update Event with the WaiverFile API

Updates the details of an existing event in WaiverFile. See the documentation

 
Try it
Create AP Aging Detail Report with the Quickbooks Sandbox API

Creates an AP aging report in Quickbooks Online. See the documentation

 
Try it
Create Bill with the Quickbooks Sandbox API

Creates a bill. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,500+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Cloud-based customer relationship management (CRM) platform that helps businesses manage sales, marketing, customer support, and other business activities, ultimately aiming to improve customer relationships and streamline operations.
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.