Moosend

Email marketing & automations platform

Integrate the Moosend API with the Schedule API

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

Add subscriber with Moosend API on Daily schedule from Schedule API
Schedule + Moosend
 
Try it
Add subscriber with Moosend API on Monthly schedule from Schedule API
Schedule + Moosend
 
Try it
Add subscriber with Moosend API on Schedule based on a custom interval from Schedule API
Schedule + Moosend
 
Try it
Add subscriber with Moosend API on Weekly schedule from Schedule API
Schedule + Moosend
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
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

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

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.