Interface MailerLiteV2NodeParameters

Source
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§

Source§

readonly 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;
}

Default: {}

Source§

readonly email?: string

Email of new subscriber

Source§

readonly filters?: {
    status?:
        | "unsubscribed"
        | "active"
        | "unconfirmed"
        | "bounced"
        | "junk";
}

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}

Source§

readonly operation?: "create" | "get" | "getAll" | "update"

Default: "create"

Source§

readonly resource?: "subscriber"

Default: "subscriber"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly subscriberId?: string

Email of subscriber