Interface MicrosoftSharePointNodeParameters

Source
interface MicrosoftSharePointNodeParameters {
    changeFileContent?: boolean;
    file?: { mode: "id" | "list"; value: string };
    fileContents?: string;
    fileName?: string;
    filter?: string;
    folder?: { mode: "id" | "list"; value: string };
    item?: { mode: "id" | "list"; value: string };
    limit?: number;
    list?: { mode: "id" | "list"; value: string };
    operation?:
        | "create"
        | "get"
        | "getAll"
        | "update"
        | "delete"
        | "upsert"
        | "upload"
        | "download";
    options?: {
        fields?: (
            | "id"
            | "contentType"
            | "fields"
            | "createdDateTime"
            | "lastModifiedDateTime"
            | "createdBy"
            | "lastModifiedBy"
            | "parentReference"
            | "webUrl"
        )[];
    };
    resource?: "list"
    | "file"
    | "item";
    returnAll?: boolean;
    simplify?: boolean;
    site?: { mode: "id" | "list"; value: string };
}

Properties§

§readonly changeFileContent?: boolean

Whether to update the file contents

§readonly file?: { ... }

Select the file to download Default: {"mode":"list","value":""}

§readonly fileContents?: string

Find the name of input field containing the binary data to update the file with in the Input panel on the left, in the Binary tab

§readonly fileName?: string

If not specified, the original file name will be used

§readonly filter?: string

The formula will be evaluated for each record. More info.

§readonly folder?: { ... }

Select the folder to download the file from Default: {"mode":"list","value":""}

§readonly item?: { ... }

Select the item you want to delete Default: {"mode":"list","value":""}

§readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1}

§readonly list?: { ... }

Select the list you want to create an item in Default: {"mode":"list","value":""}

§readonly operation?:
    | "create"
    | "get"
    | "getAll"
    | "update"
    | "delete"
    | "upsert"
    | "upload"
    | "download"

Default: "download"

§readonly options?: { ... }

Default: {}

§readonly resource?: "list" | "file" | "item"

Default: "file"

§readonly returnAll?: boolean

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

§readonly simplify?: boolean

Default: true

§readonly site?: { ... }

Select the site to retrieve folders from Default: {"mode":"list","value":""}