Discord Bot

Use this app to interact with the Discord API using a bot in your account

Integrate the Discord Bot API with the Voice Monkey API

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

Display Image with Voice Monkey API on New Message in Channel from Discord Bot API
Discord Bot + Voice Monkey
 
Try it
Display Video with Voice Monkey API on New Message in Channel from Discord Bot API
Discord Bot + Voice Monkey
 
Try it
Make Announcement with Voice Monkey API on New Message in Channel from Discord Bot API
Discord Bot + Voice Monkey
 
Try it
Trigger Monkey with Voice Monkey API on New Message in Channel from Discord Bot API
Discord Bot + Voice Monkey
 
Try it
Display Image with Voice Monkey API on New Forum Thread Message from Discord Bot API
Discord Bot + Voice Monkey
 
Try it
New Message in Channel from the Discord Bot API

Emit new event for each message posted to one or more channels

 
Try it
New Forum Thread Message from the Discord Bot API

Emit new event for each forum thread message posted. Note that your bot must have the MESSAGE_CONTENT privilege intent to see the message content, see the docs here.

 
Try it
New Guild Member from the Discord Bot API

Emit new event for every member added to a guild. See docs here

 
Try it
New Thread Message from the Discord Bot API

Emit new event for each thread message posted.

 
Try it
Display Image with the Voice Monkey API

This action will display an image on your device with a screen e.g. Echo Show. See docs here

 
Try it
Add Role with the Discord Bot API

Assign a role to a user. Remember that your bot requires the MANAGE_ROLES permission. See the docs here

 
Try it
Display Video with the Voice Monkey API

This action will display a video on your device with a screen e.g. Echo Show. See docs here

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Make Announcement with the Voice Monkey API

This action will make an annoucement on your device using the text you supply. See docs here

 
Try it

Overview of Discord Bot

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 Bot

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: {
    discord_bot: {
      type: "app",
      app: "discord_bot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        "Authorization": `Bot ${this.discord_bot.$auth.bot_token}`,
      },
    })
  },
})

Overview of Voice Monkey

Voice Monkey's Custom API allows you to build voice applications to extend your
business. Here are some examples of what you can create:

  • Virtual Assistants: Create a virtual assistant that can answer customer
    queries, provide relevant information and services, or even be a personal
    helper.
  • Home Automation: Transform your home with Voice Monkey's Custom API by adding
    voice control to lights, security systems, and other devices.
  • Interactive Voice Response (IVR): Streamline customer service with an
    automated system, allowing customers to interact with your business through
    voice commands.
  • Voice User Interfaces: Build interactive applications with natural language
    understanding and cognitive capabilities.
  • Smart Home Applications: Develop tools to monitor, control and automate your
    home.
  • Smart Robotic Applications: Create robots that respond to voice commands and
    operate autonomously with the help of Voice Monkey's Custom API.
  • Conversational Agents: Create AI-powered chatbots that can interact with
    customers and provide personalized information or services.
  • Content Aggregators: Pull content from multiple sources and create a unified,
    natural language interface.
  • Voice-controlled Games: Develop games powered by the Voice Monkey's Custom
    API, allowing users to interact using voice commands.

Connect Voice Monkey

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    voice_monkey: {
      type: "app",
      app: "voice_monkey",
    }
  },
  async run({steps, $}) {
    const data = {
      "access_token": `${this.voice_monkey.$auth.access_token}`,
      "secret_token": `${this.voice_monkey.$auth.secret_token}`,
      "monkey": `pipedream-monkey-1`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.voicemonkey.io/trigger`,
      data,
    })
  },
})