Omnisend

Marketing automation built for ecommerce. Increase your sales, not your workload.

Integrate the Omnisend API with the Supabase API

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

Delete Row with Supabase API on New Contact Created from Omnisend API
Omnisend + Supabase
 
Try it
Delete Row with Supabase API on New Order Completed from Omnisend API
Omnisend + Supabase
 
Try it
Insert Row with Supabase API on New Contact Created from Omnisend API
Omnisend + Supabase
 
Try it
Insert Row with Supabase API on New Order Completed from Omnisend API
Omnisend + Supabase
 
Try it
Remote Procedure Call with Supabase API on New Contact Created from Omnisend API
Omnisend + Supabase
 
Try it
New Contact Created from the Omnisend API

Emit new event each time a new contact is created in Omnisend.

 
Try it
New Order Completed from the Omnisend API

Emit new event for each new completed order in Omnisend.

 
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 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
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
Start Campaign with the Omnisend API

Starts a marketing campaign for selected subscribers. See the documentation

 
Try it
Trigger Custom Event with the Omnisend API

Trigger custom event to Omnisend. See the documentation

 
Try it
Update Contact with the Omnisend API

Modify subscriber information or update their subscription status. See the documentation

 
Try it

Overview of Omnisend

Omnisend's API lets you automate email marketing by integrating with your e-commerce platform. You can sync subscriber lists, trigger personalized emails based on customer behavior, and track results. With Pipedream, you can seamlessly connect Omnisend to a plethora of other services, creating custom workflows. This means you can automate follow-ups, update databases, or kick off multi-step sequences with ease.

Connect Omnisend

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    omnisend: {
      type: "app",
      app: "omnisend",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.omnisend.com/v3/contacts`,
      headers: {
        "X-API-KEY": `${this.omnisend.$auth.api_key}`,
      },
    })
  },
})

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