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 file?: { mode: "id" | "list"; value: string }
readonly file?: { mode: "id" | "list"; value: string }
Select the file to download Default: {"mode":"list","value":""}
Source§readonly file Contents?: string
readonly file Contents?: 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 folder?: { mode: "id" | "list"; value: string }
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 }
readonly item?: { mode: "id" | "list"; value: string }
Select the item you want to delete Default: {"mode":"list","value":""}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1}
Source§readonly list?: { mode: "id" | "list"; value: string }
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"
readonly operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete"
| "upsert"
| "upload"
| "download"
Default: "download"
Whether to update the file contents