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§

§readonly additionalFields?: { ... }

Default: {}

§readonly email?: string

Email of new subscriber

§readonly filters?: { ... }

Default: {}

§readonly limit?: number

Max 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 returnAll?: boolean

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

§readonly subscriberId?: string

Email of subscriber