Discord Bot

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

Integrate the Discord Bot API with the Eventbrite API

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

Create Event with Eventbrite API on New Message in Channel from Discord Bot API
Discord Bot + Eventbrite
 
Try it
Get Event Attendees with Eventbrite API on New Message in Channel from Discord Bot API
Discord Bot + Eventbrite
 
Try it
Get Event Details with Eventbrite API on New Message in Channel from Discord Bot API
Discord Bot + Eventbrite
 
Try it
Get Event Summary with Eventbrite API on New Message in Channel from Discord Bot API
Discord Bot + Eventbrite
 
Try it
Get My Orders with Eventbrite API on New Message in Channel from Discord Bot API
Discord Bot + Eventbrite
 
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 Attendee Check-In (Instant) from the Eventbrite API

Emit new event when an attendee checks in to an event

 
Try it
New Attendee Registered (Instant) from the Eventbrite API

Emit new event when an attendee registers for an event

 
Try it
New Event (Instant) from the Eventbrite API

Emit new event when an event has been created

 
Try it
New Event Ended from the Eventbrite API

Emit new event when an event has ended

 
Try it
Create Event with the Eventbrite API

Create a new Eventbrite event. See the documentation

 
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
Get Event Attendees with the Eventbrite API

Get event attendees for a specified event. See the documentation

 
Try it
Change Nickname with the Discord Bot API

Modifies the nickname of the current user in a guild.

 
Try it
Get Event Details with the Eventbrite API

Get details for a specified event. See the documentation

 
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 Eventbrite

With the Eventbrite API, you can build applications that:

  • Help event organizers sell tickets and promote their events
  • Allow eventgoers to find and buy tickets to events
  • Provide tools for event organizers to manage their events

Here are some examples of things you can build using the Eventbrite API:

  • A ticket sales and event promotion website or app
  • An event ticketing website or app
  • A event management tool for event organizers
  • A event search engine

Connect Eventbrite

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: {
    eventbrite: {
      type: "app",
      app: "eventbrite",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.eventbriteapi.com/v3/users/me/`,
      headers: {
        Authorization: `Bearer ${this.eventbrite.$auth.oauth_access_token}`,
      },
    })
  },
})