interface MailchimpTriggerNodeParameters {
authentication?: "apiKey" | "oAuth2";
events?: (
| "campaign"
| "subscribe"
| "unsubscribe"
| "profile"
| "cleaned"
| "upemail"
)[];
list?: string;
sources?: ("admin" | "api" | "user")[];
}
Properties§
Source§readonly events?: (
| "campaign"
| "subscribe"
| "unsubscribe"
| "profile"
| "cleaned"
| "upemail"
)[]
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
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"}
Default: "apiKey"