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§

Source§

readonly binaryProperty?: string

Default: "data"

Source§

readonly download?: boolean

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

Source§

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

Source§

readonly jsonParameters?: boolean

Source§

readonly operation?: "create" | "get"

Default: "create"

Source§

readonly options?: { fileName?: string }

Default: {}

Source§

readonly overridesJson?: string

Source§

readonly overridesUi?: {
    overrideValues: {
        propertiesUi?: {
            propertyValues: { key?: string; value?: string }[];
        };
    }[];
}

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

Source§

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

Source§

readonly propertiesJson?: string

Source§

readonly propertiesUi?: { propertyValues: { key?: string; value?: string }[] }

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

Source§

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

Default: "image"