with Kudosity and Microsoft Teams Bot?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kudosity: {
type: "app",
app: "kudosity",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.transmitsms.com/get-balance.json`,
auth: {
username: `${this.kudosity.$auth.api_key}`,
password: `${this.kudosity.$auth.api_secret}`,
},
})
},
})By connecting a Microsoft Teams Bot to Pipedream, you can build interactive chat experiences and automate messaging workflows using any of the thousands of apps available on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams_bot: {
type: "app",
app: "microsoft_teams_bot",
}
},
async run({steps, $}) {
return "Azure Bot successfully authenticated."
},
})