SendPulse

Multi-Channel Marketing Platform

Integrate the SendPulse API with the Formatting API

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

Retrieve General Information About a Specific Email Address with the SendPulse API
 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Unsubscribe a Contact From a Defined Mailing List with the SendPulse API
 
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 SendPulse

The SendPulse API taps into the power of multi-channel marketing automation, enabling you to manage mailing lists, send emails, and analyze campaign performance. By leveraging Pipedream, you can stitch SendPulse into a network of apps to create automated workflows. Imagine syncing new sign-ups from your CRM to SendPulse, triggering personalized email sequences based on customer behavior, or pulling campaign stats into your analytics dashboard - All in real-time and without writing a single line of server-side code.

Connect SendPulse

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: {
    sendpulse: {
      type: "app",
      app: "sendpulse",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.sendpulse.com/senders`,
      headers: {
        Authorization: `Bearer ${this.sendpulse.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Formatting

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