Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.
This source triggers when a new profile is created in Starloop.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Create a new channel in Microsoft Teams. See the docs here
Returns your business id and a list of all profile id’s and names. See the documentation
Get the list of shift instances for a team. See the documentation
Creates a new recipient and sends a Starloop invite (Email | SMS | both) to your customer to leave a review. 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 Starloop API provides a pathway to streamline customer feedback management by allowing the automation of review requests, monitoring of multiple review sites, and analysis of customer sentiment. With Pipedream, you can craft serverless workflows that leverage these capabilities, integrating Starloop's functionalities with other apps and services to amplify your customer relationship strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
starloop: {
type: "app",
app: "starloop",
}
},
async run({steps, $}) {
const data = {
"token": `${this.starloop.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://go.starloop.com/api/list_ids`,
headers: {
"Content-Type": `application/json`,
"accept": `application/json`,
},
data,
})
},
})