Postalytics

Direct Mail Automation software in the cloud - Deep Integration With CRM & Workflows - Making direct mail look, act and feel like a digital marketing channel

Integrate the Postalytics API with the Supabase API

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

Create Contact with Postalytics API on New Row Added from Supabase API
Supabase + Postalytics
 
Try it
Create Contact with Postalytics API on New Webhook Event (Instant) from Supabase API
Supabase + Postalytics
 
Try it
Delete Row with Supabase API on New Campaign Event (Instant) from Postalytics API
Postalytics + Supabase
 
Try it
Insert Row with Supabase API on New Campaign Event (Instant) from Postalytics API
Postalytics + Supabase
 
Try it
List Contacts with Postalytics API on New Row Added from Supabase API
Supabase + Postalytics
 
Try it
New Campaign Event (Instant) from the Postalytics API

Emit new event when a new campaign event occurs.

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

Creates a new contact in Postalytics. See the documentation

 
Try it
Delete Row with the Supabase API

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

 
Try it
List Contacts with the Postalytics API

Displays a list of contacts in Postalytics. See the documentation

 
Try it
Insert Row with the Supabase API

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

 
Try it
Send and Track Postcard or Letter with the Postalytics API

Send a postcard or letter with the capability of tracking delivery and response. See the documentation

 
Try it

Overview of Postalytics

The Postalytics API lets you automate direct mail marketing campaigns, manage contacts, and track results. By integrating Postalytics with Pipedream, you can build serverless workflows that leverage your marketing stack, sync data across platforms, and personalize your outreach efforts. You can trigger direct mail pieces based on customer behavior, update your CRM with mailing results, or create custom analytics dashboards.

Connect Postalytics

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: {
    postalytics: {
      type: "app",
      app: "postalytics",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.postalytics.com/api/v1/contacts`,
      auth: {
        username: `${this.postalytics.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

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