npm

Node package manager

Integrate the npm API with the pretix API

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

Get Order Details with pretix API on npm Download Counts from npm API
npm + pretix
 
Try it
Update Event with pretix API on npm Download Counts from npm API
npm + pretix
 
Try it
npm Download Counts from the npm API

Emit an event with the latest count of downloads for an npm package

 
Try it
Get Order Details with the pretix API

Returns information on one order, identified by its order code. See the documentation

 
Try it
Update Event with the pretix API

Updates a specific event. See the documentation

 
Try it

Overview of pretix

The pretix API enables seamless integration of your event management tasks by automating ticket sales, attendee management, and event analytics. With Pipedream's capabilities, you can build custom workflows that respond to various pretix events, synchronize attendee data with other services, or analyze sales patterns for actionable insights.

Connect pretix

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: {
    pretix: {
      type: "app",
      app: "pretix",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://pretix.eu/api/v1/me`,
      headers: {
        Authorization: `Bearer ${this.pretix.$auth.oauth_access_token}`,
      },
    })
  },
})