← Eventbrite

New Event Ended from Eventbrite API

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

Trigger workflow on
New Event Ended 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 Event Ended with Eventbrite API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the New Event Ended trigger
    1. Connect your Eventbrite account
    2. Select a Organization
    3. Configure timer
  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 Event Ended from Eventbrite API
Eventbrite + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Event Ended from Eventbrite API
Eventbrite + Google Sheets
 
Try it
Get Film with SWAPI API on New Event Ended from Eventbrite API
Eventbrite + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on New Event Ended from Eventbrite API
Eventbrite + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on New Event Ended 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 Event Ended on Eventbrite
Description:Emit new event when an event has ended
Version:0.0.4
Key:eventbrite-new-event-ended

Code

import common from "../common/event.mjs";
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";

export default {
  ...common,
  key: "eventbrite-new-event-ended",
  name: "New Event Ended",
  description: "Emit new event when an event has ended",
  version: "0.0.4",
  dedupe: "unique",
  type: "source",
  props: {
    ...common.props,
    timer: {
      type: "$.interface.timer",
      default: {
        intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
      },
    },
  },
  hooks: {
    ...common.hooks,
    async deploy() {
      const params = {
        orgId: this.organization,
        params: {
          status: "ended,completed",
        },
      };
      const eventStream = await this.resourceStream(
        this.eventbrite.listEvents.bind(this),
        "events",
        params,
      );
      for await (const event of eventStream) {
        this.emitEvent(event);
      }
    },
    activate() { },
    deactivate() { },
  },
  async run() {
    const params = {
      orgId: this.organization,
      params: {
        status: "ended,completed",
      },
    };
    const eventStream = await this.resourceStream(
      this.eventbrite.listEvents.bind(this),
      "events",
      params,
    );
    for await (const newEvent of eventStream) {
      this.emitEvent(newEvent);
    }
  },
};

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.
timer$.interface.timer

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

Emit new event when an event has been updated

 
Try it
New Order (Instant) from the Eventbrite API

Emit new event when an order has been placed

 
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