Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.
Emit new event when a subscriber's status changes to 'hard bounce'.
Emit new event when a new subscriber is added to the list.
Emit new event when a new message is posted in a channel
Create a new channel in Microsoft Teams. See the docs here
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}`,
},
})
},
})
Sendloop is a robust email marketing platform designed to help businesses engage with their audience. With Sendloop's API on Pipedream, you can automate email campaigns, manage subscribers, and track the performance of your emails. Pipedream's serverless platform enables you to connect Sendloop with hundreds of other apps, creating powerful workflows that save time and enhance productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendloop: {
type: "app",
app: "sendloop",
}
},
async run({steps, $}) {
const data = {
"APIKey": `${this.sendloop.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://${this.sendloop.$auth.account}.sendloop.com/api/v3/Account.Info.Get/json`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
},
data,
})
},
})