Discord

Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.

Integrate the Discord API with the RingCentral API

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

Create Meeting with Ringcentral API on New Message from Discord API
Discord + RingCentral
 
Try it
Download Recording with RingCentral API on New Message (Instant) from Discord API
Discord + RingCentral
 
Try it
Get Message with RingCentral API on New Message (Instant) from Discord API
Discord + RingCentral
 
Try it
Make CallOut with Ringcentral API on New Message from Discord API
Discord + RingCentral
 
Try it
Send SMS with Ringcentral API on New Message from Discord API
Discord + RingCentral
 
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 Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

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

Emit new event for each new member added to a guild

 
Try it
Create Meeting with the RingCentral API

Creates a new meeting. See the API docs here.

 
Try it
Download Recording with the RingCentral API

Gets a recording and downloads it to the /tmp directory. See the documentation

 
Try it
Get Message with the RingCentral API

Get message from the Message Store. See the API docs here

 
Try it
Make CallOut with the RingCentral API

Creates a new outbound call out session. See the API docs here

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it

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`,
      },
    })
  },
})

Overview of RingCentral

RingCentral API is a powerful tool that allows users to build applications and
solutions that make communication easier and more convenient. With RingCentral
API, developers can build communication solutions that include voice and video,
SMS/MMS, Fax, and other features.

With RingCentral API, developers can build:

  • Voice and Video calls with advanced interactions, such as ringback tones,
    call screening, call forwarding, call recording and conference calling.
  • Rich messaging applications leveraging SMS, MMS, and chat functionality.
  • Fax solutions, such as sending and receiving faxes through a web application.
  • Presence and availability services, allowing users to set their status and
    view the status of other users.
  • Automated voice solutions such as voice recognition, voice menus and more.
  • Voice analytics and call quality monitoring.
  • Contact center solutions with the ability to monitor and manage queues.

Connect RingCentral

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: {
    ringcentral: {
      type: "app",
      app: "ringcentral",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.ringcentral.$auth.instancetype}.ringcentral.com/restapi/v1.0/account/~`,
      headers: {
        Authorization: `Bearer ${this.ringcentral.$auth.oauth_access_token}`,
      },
    })
  },
})