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§

Source§

readonly changeFileContent?: boolean

Whether to update the file contents

Source§

readonly file?: { mode: "id" | "list"; value: string }

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

Source§

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

Source§

readonly fileName?: string

If not specified, the original file name will be used

Source§

readonly filter?: string

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

Source§

readonly folder?: { mode: "id" | "list"; value: string }

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

Source§

readonly item?: { mode: "id" | "list"; value: string }

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

Source§

readonly limit?: number

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

Source§

readonly list?: { mode: "id" | "list"; value: string }

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

Source§

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

Default: "download"

Source§

readonly options?: {
    fields?: (
        | "id"
        | "contentType"
        | "fields"
        | "createdDateTime"
        | "lastModifiedDateTime"
        | "createdBy"
        | "lastModifiedBy"
        | "parentReference"
        | "webUrl"
    )[];
}

Default: {}

Source§

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

Default: "file"

Source§

readonly returnAll?: boolean

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

Source§

readonly simplify?: boolean

Default: true

Source§

readonly site?: { mode: "id" | "list"; value: string }

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