Laposta

Dutch newsletter app (email marketing) that makes it exceptionally easy to send professional newsletters.

Integrate the Laposta API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Relation Created (Instant) from Laposta API
Laposta + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Relation Deleted (Instant) from Laposta API
Laposta + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Relation Updated (Instant) from Laposta API
Laposta + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Relation Created (Instant) from Laposta API
Laposta + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Relation Deleted (Instant) from Laposta API
Laposta + Formatting
 
Try it
New Relation Created (Instant) from the Laposta API

Emit new event on each created relation. See docs here (Go to Add webhook)

 
Try it
New Relation Deleted (Instant) from the Laposta API

Emit new event on each deleted relation. See docs here (Go to Add webhook)

 
Try it
New Relation Updated (Instant) from the Laposta API

Emit new event on each updated relation. See docs here (Go to Add webhook)

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

Convert an object to a JSON format string

 
Try it
Delete Relation with the Laposta 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 Laposta

With the Laposta API you can integration Laposta's powerful email marketing
features into your own application. With Laposta you can easily create and send
newsletters, manage subscribers and track statistics.

Connect Laposta

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: {
    laposta: {
      type: "app",
      app: "laposta",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.laposta.nl/v2/list`,
      auth: {
        username: `${this.laposta.$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()
  },
})