Microsoft Teams

Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.

Integrate the Microsoft Teams API with the Discord API

Setup the Microsoft Teams API trigger to run a workflow which integrates with the Discord API. Pipedream's integration platform allows you to integrate Microsoft Teams and Discord remarkably fast. Free for developers.

Create Channel with Microsoft Teams API on New Message from Discord API
Discord + Microsoft Teams
 
Try it
List Channels with Microsoft Teams API on New Message from Discord API
Discord + Microsoft Teams
 
Try it
List Shifts with Microsoft Teams API on New Message (Instant) from Discord API
Discord + Microsoft Teams
 
Try it
Send Channel Message with Microsoft Teams API on New Message from Discord API
Discord + Microsoft Teams
 
Try it
Send Chat Message with Microsoft Teams API on New Message from Discord API
Discord + Microsoft Teams
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Channel from the Microsoft Teams API

Emit new event when a new channel is created within a team

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Create Channel with the Microsoft Teams API

Create a new channel in Microsoft Teams. See the docs here

 
Try it
List Channels with the Microsoft Teams API

Lists all channels in a Microsoft Team. See the docs here

 
Try it
List Shifts with the Microsoft Teams API

Get the list of shift instances for a team. See the documentation

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it

Overview of Microsoft Teams

With the Microsoft Teams API, you can build a variety of applications and
integrations that work with Teams. For example, you could build a bot that
responds to questions from users, or an app that lets users add information to
a shared Teams document. You could also build an integration that lets users
interact with an external service right from within Teams.

Connect Microsoft Teams

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})