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 change File Content?: booleanreadonly file?: { ... }Select the file to download Default: {"mode":"list","value":""}
readonly file Contents?: stringFind 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 file Name?: stringIf not specified, the original file name will be used
readonly filter?: stringThe 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?: numberMax 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 return All?: booleanWhether to return all results or only up to a given limit
readonly simplify?: booleanDefault: true
readonly site?: { ... }Select the site to retrieve folders from Default: {"mode":"list","value":""}
Whether to update the file contents