API platform for calls, customer service, two-factor authentication and notifications.
Go to siteimport { 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}`,
},
})
},
})
Message Bird uses API keys for authentication. When you connect your Message Bird account, Pipedream securely stores the keys so you can easily authenticate to Message Bird APIs in both code and no-code steps.
Once you sign in, the API key information are available in the Developer Settings, which is shown as Manage API Keys in the middle right of the Dashboard.