with Flowla and Microsoft Teams Bot?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flowla: {
type: "app",
app: "flowla",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flowla.com/api/v1/users`,
headers: {
"x-flowla-api-key": `${this.flowla.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
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."
},
})