SendX

Powerful email marketing software to send campaigns, build your list, and automate your marketing.

Integrate the SendX API with the Supabase API

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

Add Tag to Contact with SendX API on New Row Added from Supabase API
Supabase + SendX
 
Try it
Add Tag to Contact with SendX API on New Webhook Event (Instant) from Supabase API
Supabase + SendX
 
Try it
Create or Update Contact with SendX API on New Row Added from Supabase API
Supabase + SendX
 
Try it
Create or Update Contact with SendX API on New Webhook Event (Instant) from Supabase API
Supabase + SendX
 
Try it
Remove Tag from Contact with SendX API on New Row Added from Supabase API
Supabase + SendX
 
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
Add Tag to Contact with the SendX API

Associates a user-provided tag with a specified contact in SendX. This action requires the contact's identification detail and the tag.

 
Try it
Delete Row with the Supabase API

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

 
Try it
Create or Update Contact with the SendX API

Creates a new contact or updates an existing one with user-provided data. See the documentation

 
Try it
Insert Row with the Supabase API

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

 
Try it
Remove Tag from Contact with the SendX API

De-associates a user-provided tag from a given contact in SendX.

 
Try it

Overview of SendX

The SendX API offers a toolbox for email marketing automation, allowing developers to integrate SendX's capabilities into Pipedream workflows seamlessly. On Pipedream, you can harness this API to trigger actions based on various conditions, synchronize data across platforms, automate email campaigns, and personalize interactions with your subscribers. The power of Pipedream lies in its ability to connect the dots between SendX and numerous other apps, creating a cohesive automation ecosystem.

Connect SendX

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: {
    sendx: {
      type: "app",
      app: "sendx",
    }
  },
  async run({steps, $}) {
    const data = {         
     "email": "john.doe@gmail.com",         
     "firstName": "John",         
      "lastName": "Doe",         
      "birthday": "1989-03-03",         
    }
    return await axios($, {
      method: "post",
      url: `https://app.sendx.io/api/v1/contact/identify`,
      headers: {
        "api_key": `${this.sendx.$auth.api_key}`,
      },
      params: {
        team_id: `${this.sendx.$auth.team_id}`,
      },
      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}`,
      },
    })
  },
})