IFTTT

Every thing works better together

Integrate the IFTTT API with the Schedule API

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

Trigger Event with JSON with IFTTT API on Custom Interval from Schedule API
Schedule + IFTTT
 
Try it
Trigger Event with JSON with IFTTT API on Daily schedule from Schedule API
Schedule + IFTTT
 
Try it
Trigger Event with JSON with IFTTT API on Monthly Schedule from Schedule API
Schedule + IFTTT
 
Try it
Trigger Event with JSON with IFTTT API on Weekly schedule from Schedule API
Schedule + IFTTT
 
Try it
Trigger Event with Values with IFTTT API on Custom Interval from Schedule API
Schedule + IFTTT
 
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
Trigger Event with JSON with the IFTTT API

Trigger Event with an arbitrary JSON payload. See docs

 
Try it
Trigger Event with Values with the IFTTT API

Trigger Event with 3 JSON values. See docs

 
Try it

Overview of IFTTT

IFTTT (If This Then That) is a service that lets you create chains of conditional statements, known as applets. These applets can automate tasks across a variety of web services and APIs. By integrating IFTTT with Pipedream, you unlock the ability to handle complex logic, manage state, transform data, and interact with over 600+ supported apps in Pipedream’s ecosystem. You can trigger workflows on Pipedream with events from IFTTT and vice versa, creating a seamless automation experience.

Connect IFTTT

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: {
    ifttt: {
      type: "app",
      app: "ifttt",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://connect.ifttt.com//v2/me`,
      headers: {
        "IFTTT-Service-Key": `${this.ifttt.$auth.ifttt_Service_Key}`,
      },
    })
  },
})

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.