Discord Bot

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

Integrate the Discord Bot API with the Ninox API

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

Create Record with Ninox API on New Message in Channel from Discord Bot API
Discord Bot + Ninox
 
Try it
Update Record with Ninox API on New Message in Channel from Discord Bot API
Discord Bot + Ninox
 
Try it
Add Role with Discord Bot API on New Record from Ninox API
Ninox + Discord Bot
 
Try it
Add Role with Discord Bot API on New Updated Record from Ninox API
Ninox + Discord Bot
 
Try it
Change Nickname with Discord Bot API on New Record from Ninox API
Ninox + Discord Bot
 
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 Record from the Ninox API

Emit new event on each created record.

 
Try it
New Updated Record from the Ninox API

Emit new event on each updated record.

 
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
Create Record with the Ninox API

Creates a record. 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
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Create Channel Invite with the Discord Bot API

Create a new invite for the channel. See the docs here

 
Try it
Update Record with the Ninox API

Updates a record. 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 Ninox

The Ninox API provides a powerful way to build and manage
web applications. With Ninox, web developers can create and customize
applications to fit their exact needs.

Ninox's API makes it easy to build any kind of web application. Here are some
of the applications you can create using Ninox:

  • Web-based CRM: Use Ninox to create powerful customer relationship management
    (CRM) applications. Store customer data and track customer interactions.
  • Surveys and Forms: Make it easy for customers to provide feedback and answer
    surveys with an easy-to-use form builder.
  • Dashboard: Create visualizations to quickly get a full view of your business.
  • Scheduling: Allow customers to quickly book appointments and more with an
    interactive calendar.
  • Website Builder: Create stunning websites with custom layouts, dynamic
    content, and easy editing.
  • Shopping Cart: Create intuitive online shopping experiences and integrate
    them into your website.
  • Automation: Set up automated workflows and triggered events to streamline
    your business processes.

Connect Ninox

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: {
    ninox: {
      type: "app",
      app: "ninox",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.ninox.com/v1/teams`,
      headers: {
        Authorization: `Bearer ${this.ninox.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})