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 Formatting API

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

[Data] Convert JSON to String with Formatting API on New Campaign Event (Instant) from Postalytics API
Postalytics + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Campaign Event (Instant) from Postalytics API
Postalytics + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Campaign Event (Instant) from Postalytics API
Postalytics + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Campaign Event (Instant) from Postalytics API
Postalytics + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Campaign Event (Instant) from Postalytics API
Postalytics + Formatting
 
Try it
New Campaign Event (Instant) from the Postalytics API

Emit new event when a new campaign event occurs.

 
Try it
Create Contact with the Postalytics API

Creates a new contact in Postalytics. See the documentation

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
List Contacts with the Postalytics API

Displays a list of contacts in Postalytics. See the documentation

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})