Interface EventbriteTriggerNodeParameters

Source
interface EventbriteTriggerNodeParameters {
    actions?: (
        | "attendee.checked_in"
        | "attendee.checked_out"
        | "attendee.updated"
        | "event.created"
        | "event.published"
        | "event.unpublished"
        | "event.updated"
        | "order.placed"
        | "order.refunded"
        | "order.updated"
        | "organizer.updated"
        | "ticket_class.created"
        | "ticket_class.deleted"
        | "ticket_class.updated"
        | "venue.updated"
    )[];
    authentication?: "oAuth2"
    | "privateKey";
    event?: string;
    organization?: string;
    resolveData?: boolean;
}

Properties§

Source§

readonly actions?: (
    | "attendee.checked_in"
    | "attendee.checked_out"
    | "attendee.updated"
    | "event.created"
    | "event.published"
    | "event.unpublished"
    | "event.updated"
    | "order.placed"
    | "order.refunded"
    | "order.updated"
    | "organizer.updated"
    | "ticket_class.created"
    | "ticket_class.deleted"
    | "ticket_class.updated"
    | "venue.updated"
)[]

One or more action to subscribe to Default: []

Source§

readonly authentication?: "oAuth2" | "privateKey"

Default: "privateKey"

Source§

readonly event?: string

Limit the triggers to this event. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsDependsOn":["organization"],"loadOptionsMethod":"getEvents"}

Source§

readonly organization?: string

The Eventbrite Organization to work on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getOrganizations"}

Source§

readonly resolveData?: boolean

By default does the webhook-data only contain the URL to receive the object data manually. If this option gets activated, it will resolve the data automatically. Default: true