Pushbullet

Pushbullet connects your devices, making them feel like one

Integrate the Pushbullet API with the Schedule API

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

Delete push with Pushbullet API on Custom Interval from Schedule API
Schedule + Pushbullet
 
Try it
Delete push with Pushbullet API on Daily schedule from Schedule API
Schedule + Pushbullet
 
Try it
Delete push with Pushbullet API on Monthly Schedule from Schedule API
Schedule + Pushbullet
 
Try it
Delete push with Pushbullet API on Weekly schedule from Schedule API
Schedule + Pushbullet
 
Try it
Send push (Note, Link and File) with Pushbullet API on Custom Interval from Schedule API
Schedule + Pushbullet
 
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
Delete push with the Pushbullet API

Delete a push. See docs here

 
Try it
Send push (Note, Link and File) with the Pushbullet API

Send a push to a device or another person. See docs here

 
Try it

Overview of Pushbullet

Pushbullet acts as a bridge, connecting your devices with push notifications and file sharing capabilities. By leveraging the Pushbullet API on Pipedream, you can automate notifications for a host of events, enabling real-time alerts on your phone, browser, or desktop. Whether you're monitoring server uptimes, tracking sales, or simply staying on top of to-do lists, integrating Pushbullet with other services via Pipedream workflows can streamline your notification management and data sharing tasks.

Connect Pushbullet

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: {
    pushbullet: {
      type: "app",
      app: "pushbullet",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.pushbullet.com/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.pushbullet.$auth.oauth_access_token}`,
      },
    })
  },
})

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.