interface MailerLiteV1NodeParameters {
additionalFields?: {
confirmation_ip?: string;
confirmation_timestamp?: string;
customFieldsUi?: {
customFieldsValues: {
fieldId?: string;
value?: string;
}[];
};
name?: string;
resubscribe?: boolean;
signup_ip?: string;
signup_timestamp?: string;
type?: "unsubscribed"
| "active"
| "unconfirmed";
};
email?: string;
filters?: {
type?: "unsubscribed"
| "active"
| "unconfirmed";
};
limit?: number;
operation?: "create"
| "get"
| "getAll"
| "update";
resource?: "subscriber";
returnAll?: boolean;
subscriberId?: string;
updateFields?: {
customFieldsUi?: {
customFieldsValues: {
fieldId?: string;
value?: string;
}[];
};
name?: string;
resend_autoresponders?: boolean;
type?: "unsubscribed"
| "active"
| "unconfirmed";
};
}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
readonly update Fields?: { ... }Default: {}
Default: {}