with Mboum and Microsoft Teams?
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
Calculate Accumulation/Distribution Line technical indicator to measure volume flow and confirm price trends. See the documentation
Create a new channel in Microsoft Teams. See the docs here
Calculate Accumulation/Distribution Oscillator technical indicator to measure the momentum of volume flow. See the documentation
Get analyst ratings and recommendations for a stock including buy/sell/hold ratings. See the documentation
The Mboum API offers rich financial data, including real-time stock quotes, financial statements, and market analysis. On Pipedream, this translates into the ability to craft workflows that can automate tasks for investors, analysts, and fintech applications. For instance, you can trigger actions based on stock price changes, compile financial reports, or integrate with other services to enrich financial datasets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mboum: {
type: "app",
app: "mboum",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mboum.com/v2/markets/market-info`,
headers: {
Authorization: `Bearer ${this.mboum.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})