Interface BannerbearNodeParameters

Source
interface BannerbearNodeParameters {
    additionalFields?: {
        metadata?: string;
        waitForImage?: boolean;
        waitForImageMaxTries?: number;
        webhookUrl?: string;
    };
    imageId?: string;
    modificationsUi?: {
        modificationsValues: {
            background?: string;
            color?: string;
            imageUrl?: string;
            name?: string;
            text?: string;
        }[];
    };
    operation?: "create"
    | "get"
    | "getAll";
    resource?: "template" | "image";
    templateId?: string;
}

Properties§

§readonly additionalFields?: { ... }

Default: {}

§readonly imageId?: string

Unique identifier for the image

§readonly modificationsUi?: { ... }

Default: {} Type options: {"multipleValues":true}

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

Default: "create"

§readonly resource?: "template" | "image"

Default: "image"

§readonly templateId?: string

The template ID you want to use. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getTemplates"}