Bandwidth

Enterprise Grade Voice, Messaging, and 911 Access

Integrate the Bandwidth API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Incoming SMS from Bandwidth API
Bandwidth + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Outgoing SMS from Bandwidth API
Bandwidth + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Incoming SMS from Bandwidth API
Bandwidth + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Outgoing SMS from Bandwidth API
Bandwidth + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Incoming SMS from Bandwidth API
Bandwidth + Formatting
 
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
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
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Send SMS with the Bandwidth API

Send an SMS message using Bandwidth's Messaging API

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})