Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Bandwidth API

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

Send SMS with Bandwidth API on Daily schedule from Schedule API
Schedule + Bandwidth
 
Try it
Send SMS with Bandwidth API on Monthly schedule from Schedule API
Schedule + Bandwidth
 
Try it
Send SMS with Bandwidth API on Schedule based on a custom interval from Schedule API
Schedule + Bandwidth
 
Try it
Send SMS with Bandwidth API on Weekly schedule from Schedule API
Schedule + Bandwidth
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Incoming SMS from the Bandwidth API

Emits an event each time a message-received event is received at the source url

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Outgoing SMS from the Bandwidth API

Emits an event each time an outbound message status event is received at the source url

 
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
Send SMS with the Bandwidth API

Send an SMS message using Bandwidth's Messaging 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 Bandwidth

The Bandwidth API opens up a world of possibilities for integrating telecom services into your applications. Bandwidth specializes in voice, messaging, and 911 access, making it possible to programmatically send and receive text messages, orchestrate calls, and implement emergency call routing. Linking the Bandwidth API with Pipedream allows you to automate these telecom features with various triggers and actions from other apps, creating seamless and powerful workflows.

Connect Bandwidth

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    bandwidth: {
      type: "app",
      app: "bandwidth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://dashboard.bandwidth.com/api/accounts/${this.bandwidth.$auth.accountId}/applications`,
      auth: {
        username: `${this.bandwidth.$auth.username}`,
        password: `${this.bandwidth.$auth.password}`,
      },
    })
  },
})