Interface MailchimpTriggerNodeParameters

Source
interface MailchimpTriggerNodeParameters {
    authentication?: "apiKey" | "oAuth2";
    events?: (
        | "campaign"
        | "subscribe"
        | "unsubscribe"
        | "profile"
        | "cleaned"
        | "upemail"
    )[];
    list?: string;
    sources?: ("admin" | "api" | "user")[];
}

Properties§

Source§

readonly authentication?: "apiKey" | "oAuth2"

Default: "apiKey"

Source§

readonly events?: (
    | "campaign"
    | "subscribe"
    | "unsubscribe"
    | "profile"
    | "cleaned"
    | "upemail"
)[]

The events that can trigger the webhook and whether they are enabled Default: []

Source§

readonly list?: string

The list that is gonna fire the event. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getLists"}

Source§

readonly sources?: ("admin" | "api" | "user")[]

The possible sources of any events that can trigger the webhook and whether they are enabled Default: []