with Ticket Tailor and Claris FileMaker Server - Admin API?
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: {
claris_filemaker_server_admin_api: {
type: "app",
app: "claris_filemaker_server_admin_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.claris_filemaker_server_admin_api.$auth.api_url}/fmi/admin/api/v2/databases`,
headers: {
Authorization: `Bearer ${this.claris_filemaker_server_admin_api.$auth.oauth_access_token}`,
},
})
},
})