Whether it’s your first event ever, or your biggest event yet, we make it simple to sell tickets online.
Go to siteWith the Ticket Tailor API you can easily build a wide range of ticketing solutions for any type of event. Here are some examples of what you can build:
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: ``,
},
})
},
})
Ticket Tailor uses API keys for authentication. When you connect your Ticket Tailor account, Pipedream securely stores the keys so you can easily authenticate to Ticket Tailor APIs in both code and no-code steps.
To retrieve your API key,