← TicketSauce

Get Events with TicketSauce API

Pipedream makes it easy to connect APIs for TicketSauce and 2,900+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Get Events with the TicketSauce API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

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

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

Create a workflow to Get Events with the TicketSauce API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Get Events action
    1. Connect your TicketSauce account
    2. Optional- Configure Partner ID
    3. Optional- Configure Organization ID
    4. Optional- Configure Start After
    5. Optional- Configure End Before
    6. Optional- Configure Active Only
    7. Optional- Select a Privacy Type
    8. Optional- Select a Sort By
    9. Optional- Select a Sort Direction
    10. Optional- Configure Include Performers
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Get Events with TicketSauce API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + TicketSauce
 
Try it
Get Events with TicketSauce API on New Submission from Typeform API
Typeform + TicketSauce
 
Try it
Get Events with TicketSauce API on New Submission (Instant) from Jotform API
Jotform + TicketSauce
 
Try it
Get Events with TicketSauce API on New Scheduled Tasks from Pipedream API
Pipedream + TicketSauce
 
Try it
Get Events with TicketSauce API on New Download Counts from npm API
npm + TicketSauce
 
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.

Get Events on TicketSauce
Description:Get a list of all events owned by the authenticated account. [See documentation](https://speca.io/ticketsauce/ticketsauce-public-api?key=204000d6bda66da78315e721920f43aa#list-of-events)
Version:0.0.1
Key:ticketsauce-get-events

Code

import ticketsauce from "../../ticketsauce.app.mjs";

export default {
  key: "ticketsauce-get-events",
  name: "Get Events",
  description: "Get a list of all events owned by the authenticated account. [See documentation](https://speca.io/ticketsauce/ticketsauce-public-api?key=204000d6bda66da78315e721920f43aa#list-of-events)",
  version: "0.0.1",
  type: "action",
  annotations: {
    destructiveHint: false,
    openWorldHint: true,
    readOnlyHint: true,
  },
  props: {
    ticketsauce,
    partnerId: {
      propDefinition: [
        ticketsauce,
        "partnerId",
      ],
    },
    organizationId: {
      propDefinition: [
        ticketsauce,
        "organizationId",
      ],
    },
    startAfter: {
      type: "string",
      label: "Start After",
      description: "Only retrieve events that start AFTER the specified UTC date (format: `YYYY-MM-DD`).",
      optional: true,
    },
    endBefore: {
      type: "string",
      label: "End Before",
      description: "Only retrieve events that end BEFORE the specified UTC date (format: `YYYY-MM-DD`).",
      optional: true,
    },
    activeOnly: {
      type: "boolean",
      label: "Active Only",
      description: "Leaving this as true will restrict retrieved events to only 'active' events. Setting to false will allow the retrieval of both active and inactive events.",
      optional: true,
      default: true,
    },
    privacyType: {
      type: "string",
      label: "Privacy Type",
      description: "Filter events by privacy type.",
      optional: true,
      default: "public",
      options: [
        {
          label: "Public events only",
          value: "public",
        },
        {
          label: "All events (no restriction)",
          value: "all",
        },
        {
          label: "Unlisted events only",
          value: "unlisted",
        },
      ],
    },
    sortBy: {
      type: "string",
      label: "Sort By",
      description: "Field to sort events by.",
      optional: true,
      options: [
        {
          label: "Event start date",
          value: "date",
        },
        {
          label: "Event name",
          value: "name",
        },
        {
          label: "City location",
          value: "city",
        },
      ],
    },
    sortDir: {
      type: "string",
      label: "Sort Direction",
      description: "Direction to sort results.",
      optional: true,
      options: [
        {
          label: "Ascending",
          value: "asc",
        },
        {
          label: "Descending",
          value: "desc",
        },
      ],
    },
    includePerformers: {
      propDefinition: [
        ticketsauce,
        "includePerformers",
      ],
    },
  },
  async run({ $ }) {
    const params = {
      partner_id: this.partnerId,
      organization_id: this.organizationId,
      start_after: this.startAfter,
      end_before: this.endBefore,
      active_only: String(this.activeOnly),
      privacy_type: this.privacyType,
      sort_by: this.sortBy,
      sort_dir: this.sortDir,
      include_performers: String(this.includePerformers),
    };
    return this.ticketsauce.listEvents($, {
      params,
    });
  },
};

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
TicketSauceticketsauceappThis component uses the TicketSauce app.
Partner IDpartnerIdstring

Including this ID will limit the result set to the specific partner.

Organization IDorganizationIdstring

Including this ID will limit the result set to the specific organization.

Start AfterstartAfterstring

Only retrieve events that start AFTER the specified UTC date (format: YYYY-MM-DD).

End BeforeendBeforestring

Only retrieve events that end BEFORE the specified UTC date (format: YYYY-MM-DD).

Active OnlyactiveOnlyboolean

Leaving this as true will restrict retrieved events to only 'active' events. Setting to false will allow the retrieval of both active and inactive events.

Privacy TypeprivacyTypestringSelect a value from the drop down menu:{ "label": "Public events only", "value": "public" }{ "label": "All events (no restriction)", "value": "all" }{ "label": "Unlisted events only", "value": "unlisted" }
Sort BysortBystringSelect a value from the drop down menu:{ "label": "Event start date", "value": "date" }{ "label": "Event name", "value": "name" }{ "label": "City location", "value": "city" }
Sort DirectionsortDirstringSelect a value from the drop down menu:{ "label": "Ascending", "value": "asc" }{ "label": "Descending", "value": "desc" }
Include PerformersincludePerformersboolean

If true, returns any associated performers/artists with the event.

Authentication

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

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

About TicketSauce

The #1 White Label Event Ticketing Software Platform

More Ways to Use TicketSauce

Triggers

New Event from the TicketSauce API

Emit new event when an event is created in Ticketsauce. See the documentation

 
Try it

Actions

Get Event Details with the TicketSauce API

Get details for a specified event. See documentation

 
Try it
Get Order Details with the TicketSauce API

Get details for the specified order. See documentation

 
Try it
Get Orders with the TicketSauce API

Get a list of orders from the specified event. See documentation

 
Try it
Get Ticket Check-in IDs with the TicketSauce API

Get a list of ticket check-in IDs from the specified event. See documentation

 
Try it

Explore Other Apps

1
-
24
of
2,900+
apps by most popular

Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.