The AI and data platform that’s built for business-
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
Get the list of shift instances for a team. See the documentation
Send a message to a team's channel. See the docs here
The WatsonX AI API offers a robust suite of AI capabilities from IBM, designed to integrate advanced machine learning and cognitive computing into various applications. With these APIs, you can enhance your apps with AI-driven features such as language understanding, speech to text conversion, and visual recognition. Using Pipedream, these capabilities can be seamlessly integrated into automated workflows, allowing you to connect WatsonX AI with other services and automate complex tasks efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
watsonx_ai: {
type: "app",
app: "watsonx_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.watsonx_ai.$auth.region}.ml.cloud.ibm.com/ml/v4/deployments`,
headers: {
Authorization: `Bearer ${this.watsonx_ai.$auth.oauth_access_token}`,
},
params: {
version: `2023-07-07`,
},
})
},
})
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}`,
},
})
},
})