interface MailerLiteV2NodeParameters {
additionalFields?: {
customFieldsUi?: {
customFieldsValues: {
fieldId?: string;
value?: string;
}[];
};
ip_address?: string;
opted_in_at?: string;
optin_ip?: string;
status?: | "unsubscribed"
| "active"
| "unconfirmed"
| "bounced"
| "junk";
subscribed_at?: string;
unsubscribed_at?: string;
};
email?: string;
filters?: {
status?: | "unsubscribed"
| "active"
| "unconfirmed"
| "bounced"
| "junk";
};
limit?: number;
operation?: "create"
| "get"
| "getAll"
| "update";
resource?: "subscriber";
returnAll?: boolean;
subscriberId?: string;
}Properties§
§§§§§§§
readonly additional Fields?: { ... }§
readonly email?: stringEmail of new subscriber
readonly filters?: { ... }Default: {}
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
readonly operation?: "create" | "get" | "getAll" | "update"Default: "create"
readonly resource?: "subscriber"Default: "subscriber"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly subscriber Id?: stringEmail of subscriber
Default: {}