Eventbrite

Eventbrite brings people together through live experiences. Discover events that match your passions, or create your own with online ticketing tools.

Integrate the Eventbrite API with the Slack API

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

Create Event with Eventbrite API on New Message In Channels from Slack API
Slack + Eventbrite
 
Try it
Get Event Attendees with Eventbrite API on New Message In Channels from Slack API
Slack + Eventbrite
 
Try it
Get Event Details with Eventbrite API on New Message In Channels (Instant) from Slack API
Slack + Eventbrite
 
Try it
Get Event Summary with Eventbrite API on New Message In Channels from Slack API
Slack + Eventbrite
 
Try it
Get My Orders with Eventbrite API on New Message In Channels (Instant) from Slack API
Slack + Eventbrite
 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is 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
Get Event Attendees with the Eventbrite API

Get event attendees for a specified event. See the documentation

 
Try it
Send Message to a Public Channel with the Slack API

Send a message to a public channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it
Get Event Details with the Eventbrite API

Get details for a specified event. See the documentation

 
Try it
Send Message to a Private Channel with the Slack API

Send a message to a private channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it

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

Overview of Slack

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

The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.

  • Automate posting updates to your team channels
  • Create a bot to answer common questions
  • Integrate with your existing tools and services
  • And much more!

Connect Slack

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: {
    slack: {
      type: "app",
      app: "slack",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/users.profile.get`,
      headers: {
        Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
      },
    })
  },
})
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack.
Run a Pipedream workflow on PagerDuty on-call rotations
Run a Pipedream workflow on PagerDuty on-call rotations
Run common workflows, or any Node.js code you'd like, each time a new user rotates onto an on-call schedule.

Community Posts

Airtable Webhooks with Slack + Pipedream
Airtable Webhooks with Slack + Pipedream
We love Airtable here at Pipedream. But Airtable lacks one killer feature — webhooks. We took advantage of Airtable’s Slack notifications and built a way to send webhooks to an HTTP endpoint every time a record is created or updated in a base. It takes 10 minutes to setup and it’s free.