Moosend

Email marketing & automations platform

Integrate the Moosend API with the Formatting API

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

Add subscriber with the Moosend API

Adds a new subscriber to the specified mailing list. If there is already a subscriber with the specified email address in the list, an update will be performed instead. The rate limit for this request is 10 requests per 10 seconds (*per API key). See the docs for more info.

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

Convert an object to a JSON format string

 
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
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of Moosend

With the Moosend API, you can build a variety of applications and integrations
to help you manage your email marketing campaigns. Here are some examples of
what you can build:

  • A system to automatically send emails based on certain criteria (e.g. when a
    user subscribes to a service, or when a product is back in stock)
  • A tool to import or export data from your email marketing campaigns
  • An integration with your CRM system to keep track of customer interactions
  • A system to automatically generate reports on your email marketing campaigns
  • A system to track who opens your emails and clicks on links inside them

Connect Moosend

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: {
    moosend: {
      type: "app",
      app: "moosend",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.moosend.com/v3/lists.json`,
      params: {
        apikey: `${this.moosend.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

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