API platform for calls, customer service, two-factor authentication and notifications.
With the MessageBird API, you can build a variety of applications and
integrations that allow you to send and receive SMS messages. Here are some
examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
message_bird: {
type: "app",
app: "message_bird",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.messagebird.com/balance`,
headers: {
"Authorization": `AccessKey ${this.message_bird.$auth.access_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})