Interface ApiTemplateIoNodeParameters

Source
interface ApiTemplateIoNodeParameters {
    binaryProperty?: string;
    download?: boolean;
    imageTemplateId?: string;
    jsonParameters?: boolean;
    operation?: "create" | "get";
    options?: { fileName?: string };
    overridesJson?: string;
    overridesUi?: {
        overrideValues: {
            propertiesUi?: {
                propertyValues: { key?: string; value?: string }[];
            };
        }[];
    };
    pdfTemplateId?: string;
    propertiesJson?: string;
    propertiesUi?: {
        propertyValues: { key?: string; value?: string }[];
    };
    resource?: "account"
    | "image"
    | "pdf";
}

Properties§

§readonly binaryProperty?: string

Default: "data"

§readonly download?: boolean

Name of the binary property to which to write the data of the read file

§readonly imageTemplateId?: string

ID of the image template to use. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getImageTemplates"}

§readonly jsonParameters?: boolean
§readonly operation?: "create" | "get"

Default: "create"

§readonly options?: { ... }

Default: {}

§readonly overridesJson?: string
§readonly overridesUi?: { ... }

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

§readonly pdfTemplateId?: string

ID of the PDF template to use. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getPdfTemplates"}

§readonly propertiesJson?: string
§readonly propertiesUi?: { ... }

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

§readonly resource?: "account" | "image" | "pdf"

Default: "image"