Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Create a new channel in Microsoft Teams. See the docs here
Transcribe an audio file to text with Astica AI See the documentation
Get the list of shift instances for a team. See the documentation
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})
The Astica.ai API affords developers the ability to tap into advanced natural language processing (NLP) capabilities. By integrating this API into Pipedream workflows, you can automate text analysis, summarization, sentiment analysis, and more, leveraging the AI-powered insights to enrich applications or streamline processes. Pipedream’s serverless platform makes it painless to set up event-driven workflows that respond to various triggers and manipulate or move data between apps with no need for infrastructure management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
astica_ai: {
type: "app",
app: "astica_ai",
}
},
async run({steps, $}) {
const data = {
"tkn": `${this.astica_ai.$auth.api_key}`,
"modelVersion": `2.1_full`,
"input": `https://www.astica.org/inputs/analyze_3.jpg`,
"visionParams": `gpt, describe, describe_all, tags, objects`,
"gpt_prompt": ``,
"gpt_length": `90`,
}
return await axios($, {
method: "post",
url: `https://vision.astica.ai/describe`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})