Vision6

Australia's Most Reliable Email & SMS Marketing Software. Sign Up for a Free Trial Today!

Integrate the Vision6 API with the Supabase API

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

Create Contact with Vision6 API on New Row Added from Supabase API
Supabase + Vision6
 
Try it
Create Contact with Vision6 API on New Webhook Event (Instant) from Supabase API
Supabase + Vision6
 
Try it
Deactivate Contact with Vision6 API on New Row Added from Supabase API
Supabase + Vision6
 
Try it
Deactivate Contact with Vision6 API on New Webhook Event (Instant) from Supabase API
Supabase + Vision6
 
Try it
Delete Contact with Vision6 API on New Row Added from Supabase API
Supabase + Vision6
 
Try it
Contact Activated from the Vision6 API

Emit new event when a contact is activated

 
Try it
Contact Deactivated from the Vision6 API

Emit new event when a contact is deactivated

 
Try it
Contact Subscribed from the Vision6 API

Emit new event when a contact is subscribed

 
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
Contact Unsubscribed from the Vision6 API

Emit new event when a contact is unsubscribed

 
Try it
Delete Row with the Supabase API

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

 
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
Create Contact with the Vision6 API

Create a new contact. See the docs here

 
Try it
Select Row with the Supabase API

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

 
Try it

Overview of Vision6

The Vision6 API offers a powerful way to automate email marketing and audience engagement directly through Pipedream. With it, you can programmatically manage lists, contacts, and messages, and also track campaign performance. This API provides granular control over email workflows, enabling custom triggers, targeted actions, and detailed analytics retrieval. The combination of Vision6 with Pipedream's serverless platform unlocks endless possibilities for syncing data, personalizing communication, and optimizing marketing strategies without manual intervention.

Connect Vision6

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: {
    vision6: {
      type: "app",
      app: "vision6",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.vision6.$auth.region}.api.vision6.com/v1/lists`,
      headers: {
        Authorization: `Bearer ${this.vision6.$auth.api_key}`,
        "Content-Type": `application/json; charset=UTF-8`,
      },
    })
  },
})

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}`,
      },
    })
  },
})