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§

Source§

readonly additionalFields?: {
    metadata?: string;
    waitForImage?: boolean;
    waitForImageMaxTries?: number;
    webhookUrl?: string;
}

Default: {}

Source§

readonly imageId?: string

Unique identifier for the image

Source§

readonly modificationsUi?: {
    modificationsValues: {
        background?: string;
        color?: string;
        imageUrl?: string;
        name?: string;
        text?: string;
    }[];
}

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

Source§

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

Default: "create"

Source§

readonly resource?: "template" | "image"

Default: "image"

Source§

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"}