with Ticket Tailor and Buddee?
Emit new event when an employee is updated in the system. See the documentation
Emit new event when a new employee is added to the system. See the documentation
Emit new event when a new leave request is created in the system. See the documentation
Emit new event when a new time registration is created in the system. See the documentation
The Ticket Tailor API lets you tap into your event management toolkit, giving you the power to automate tasks like syncing attendee lists, sending custom emails after ticket purchase, and monitoring real-time event metrics. Leveraging Pipedream's capabilities, you can build workflows that respond to events in Ticket Tailor, such as new bookings, and connect these triggers to countless other apps to streamline your event management process and enhance attendee experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ticket_tailor: {
type: "app",
app: "ticket_tailor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tickettailor.com/v1/events`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.ticket_tailor.$auth.api_key}`,
password: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
buddee: {
type: "app",
app: "buddee",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.buddee.nl/users`,
headers: {
Authorization: `Bearer ${this.buddee.$auth.oauth_access_token}`,
},
})
},
})