Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the SendPulse API

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

Retrieve General Information About a Specific Email Address with SendPulse API on Daily schedule from Schedule API
Schedule + SendPulse
 
Try it
Retrieve General Information About a Specific Email Address with SendPulse API on Monthly schedule from Schedule API
Schedule + SendPulse
 
Try it
Retrieve General Information About a Specific Email Address with SendPulse API on Schedule based on a custom interval from Schedule API
Schedule + SendPulse
 
Try it
Retrieve General Information About a Specific Email Address with SendPulse API on Weekly schedule from Schedule API
Schedule + SendPulse
 
Try it
Unsubscribe a Contact From a Defined Mailing List with SendPulse API on Daily schedule from Schedule API
Schedule + SendPulse
 
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
Retrieve General Information About a Specific Email Address with the SendPulse API
 
Try it
Unsubscribe a Contact From a Defined Mailing List with the SendPulse API
 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

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