← Eventbrite

New Order (Instant) from Eventbrite API

Pipedream makes it easy to connect APIs for Eventbrite and 1000+ other apps remarkably fast.

Trigger workflow on
New Order (Instant) from the Eventbrite API
Next, do this
Connect to 1000+ APIs using code and no-code building blocks
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Trigger a workflow on New Order (Instant) with Eventbrite API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the New Order (Instant) trigger
    1. Connect your Eventbrite account
    2. Select a Organization
  2. Add steps to connect to 1000+ APIs using code and no-code building blocks
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Send Message with Discord Webhook API on New Order (Instant) from Eventbrite API
Eventbrite + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Order (Instant) from Eventbrite API
Eventbrite + Google Sheets
 
Try it
Get Film with SWAPI API on New Order (Instant) from Eventbrite API
Eventbrite + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on New Order (Instant) from Eventbrite API
Eventbrite + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on New Order (Instant) from Eventbrite API
Eventbrite + OpenAI (ChatGPT)
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

New Order (Instant) on Eventbrite
Description:Emit new event when an order has been placed
Version:0.0.4
Key:eventbrite-new-order

Code

import common from "../common/webhook.mjs";

export default {
  ...common,
  key: "eventbrite-new-order",
  name: "New Order (Instant)",
  description: "Emit new event when an order has been placed",
  version: "0.0.4",
  dedupe: "unique",
  type: "source",
  methods: {
    ...common.methods,
    getActions() {
      return "order.placed";
    },
    async getData(order) {
      const { event_id: eventId } = order;
      const event = await this.eventbrite.getEvent(null, eventId);
      return {
        order,
        event,
      };
    },
    generateMeta({ order }) {
      const {
        id, created,
      } = order;
      return {
        id,
        summary: `New Order ID: ${id}`,
        ts: Date.parse(created),
      };
    },
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
EventbriteeventbriteappThis component uses the Eventbrite app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
OrganizationorganizationstringSelect a value from the drop down menu.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.

Authentication

Eventbrite uses OAuth authentication. When you connect your Eventbrite account, Pipedream will open a popup window where you can sign into Eventbrite and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Eventbrite API.

Pipedream requests the following authorization scopes when you connect your account:

About Eventbrite

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

More Ways to Use Eventbrite

Triggers

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
New Event Updated (Instant) from the Eventbrite API

Emit new event when an event has been updated

 
Try it

Actions

Create Event with the Eventbrite API

Create a new Eventbrite event. see docs here

 
Try it
Get Event Attendees with the Eventbrite API

Get event attendees for a specified event. see docs here

 
Try it
Get Event Details with the Eventbrite API

Get details for a specified event. see docs here

 
Try it
Get Event Summary with the Eventbrite API

Get event summary for a specified event. see docs here

 
Try it