Freshmarketer

Freshmarketer is a complete marketing automation suite that helps you manage your contacts and lists, design, and deliver compelling marketing campaigns and automate your email marketing.

Integrate the Freshmarketer API with the Supabase API

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

Add or Update Contact with Freshmarketer API on New Row Added from Supabase API
Supabase + Freshmarketer
 
Try it
Add or Update Contact with Freshmarketer API on New Webhook Event (Instant) from Supabase API
Supabase + Freshmarketer
 
Try it
Delete Row with Supabase API on New Contact Added to List from Freshmarketer API
Freshmarketer + Supabase
 
Try it
Delete Row with Supabase API on New Contact Removed From List from Freshmarketer API
Freshmarketer + Supabase
 
Try it
Find Contact with Freshmarketer API on New Row Added from Supabase API
Supabase + Freshmarketer
 
Try it
New Contact Added to List from the Freshmarketer API

Emit new event when a contact is added to a specific list.

 
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 Contact Removed From List from the Freshmarketer API

Emit new event as soon as a contact is removed from a list.

 
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 or Update Contact with the Freshmarketer API

Create a new contact or updates an existing one.

 
Try it
Delete Row with the Supabase API

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

 
Try it
Find Contact with the Freshmarketer API

Searches for a contact by email and returns contact details if found. 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 Contact From List with the Freshmarketer API

Removes a contact from a specific list by email or contact ID. See the documentation

 
Try it

Overview of Freshmarketer

The Freshmarketer API enables automation of marketing efforts, providing tools to manage campaigns, leads, and more. In Pipedream, you can leverage these capabilities to create custom workflows that interact with Freshmarketer's data and connect it to other services. Combining Freshmarketer with Pipedream's serverless platform allows you to automate actions like syncing contacts, triggering campaigns based on external events, or analyzing marketing performance with external analytics tools.

Connect Freshmarketer

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: {
    freshmarketer: {
      type: "app",
      app: "freshmarketer",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.freshmarketer.$auth.domain}.myfreshworks.com/crm/sales/api/sales_accounts/filters`,
      headers: {
        "Authorization": `Token token=${this.freshmarketer.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

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