with GoTo Meeting and Microsoft Teams Bot?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goto_meeting: {
type: "app",
app: "goto_meeting",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getgo.com/identity/v1/Users/me`,
headers: {
Authorization: `Bearer ${this.goto_meeting.$auth.oauth_access_token}`,
"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."
},
})