Wave

One-stop money management software for your small business.

Integrate the Wave API with the Supabase API

Setup the Wave API trigger to run a workflow which integrates with the Supabase API. Pipedream's integration platform allows you to integrate Wave and Supabase remarkably fast. Free for developers.

Create Customer with Wave API on New Row Added from Supabase API
Supabase + Wave
 
Try it
Create Customer with Wave API on New Webhook Event (Instant) from Supabase API
Supabase + Wave
 
Try it
Create Invoice with Wave API on New Row Added from Supabase API
Supabase + Wave
 
Try it
Create Invoice with Wave API on New Webhook Event (Instant) from Supabase API
Supabase + Wave
 
Try it
Delete Row with Supabase API on New Customer from Wave API
Wave + Supabase
 
Try it
New Customer from the Wave API

Emit new event when an customer is created.

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Invoice from the Wave API

Emit new event when an invoice is created.

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
Create Customer with the Wave API

Create a customer under a business. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Create Invoice with the Wave API

Create an invoice for a customer with one product. See the documentation

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Remote Procedure Call with the Supabase API

Call a Postgres function in a database. See the docs here

 
Try it

Overview of Wave

Wave is a financial software that simplifies accounting, invoicing, and receipt scanning for small businesses. With the Wave API, you can automate various financial tasks directly within Pipedream. You can create invoices, manage customers, process payments, and extract financial reports. Integrating Wave with Pipedream allows you to connect your accounting workflow with other apps, triggering actions based on financial events or scheduling regular financial operations.

Connect Wave

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    wave: {
      type: "app",
      app: "wave",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{
      user {
        id
        defaultEmail
      }  
    }`,
    }
    return await axios($, {
      method: "post",
      url: `https://gql.waveapps.com/graphql/public`,
      headers: {
        Authorization: `Bearer ${this.wave.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})