Rockset is a serverless search and analytics engine that allows you to create live dashboards and real-time data APIs on DynamoDB, Kafka, S3 and more.
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
Add documents to a collection in Rockset. Learn more at https://docs.rockset.com/rest/#adddocuments.
Create a new channel in Microsoft Teams. See the docs here
Create a new integration with Rockset. Learn more at https://docs.rockset.com/rest/#createintegration
Rockset is a real-time indexing database service designed for low-latency, high-concurrency analytics. With the Rockset API, you can query your datasets, create and manage collections, and integrate with event streams for real-time analytics. Using Pipedream's serverless platform, you can automate workflows that react to database events, sync data across services, or trigger actions based on analytical insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rockset: {
type: "app",
app: "rockset",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rs2.usw2.rockset.com/v1/orgs/self/users/self`,
headers: {
"Authorization": `ApiKey ${this.rockset.$auth.apikey}`,
},
})
},
})
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}`,
},
})
},
})