interface MicrosoftOutlookV1NodeParameters {
additionalFields?:
| {
attachments?: {
attachments: { binaryPropertyName?: string }[];
};
bccRecipients?: string;
bodyContentType?: "html"
| "Text";
categories?: unknown[];
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isReadReceiptRequested?: boolean;
replyTo?: string;
toRecipients?: string;
}
| { recipients?: string }
| {
attachments?: {
attachments: { binaryPropertyName?: string }[];
};
bccRecipients?: string;
bodyContent?: string;
bodyContentType?: "html"
| "Text";
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isReadReceiptRequested?: boolean;
replyTo?: string;
subject?: string;
toRecipients?: string;
}
| {
attachments?: {
attachments: { binaryPropertyName?: string }[];
};
bccRecipients?: string;
bodyContentType?: "html"
| "Text";
categories?: unknown[];
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isReadReceiptRequested?: boolean;
replyTo?: string;
saveToSentItems?: boolean;
toRecipients?: string;
}
| { fileName?: string }
| { fields?: string; filter?: string }
| {
dataPropertyAttachmentsPrefixName?: string;
fields?: string;
filter?: string;
};
attachmentId?: string;
binaryPropertyName?: string;
bodyContent?: string;
comment?: string;
displayName?: string;
filterQuery?: string;
folderId?: string;
folderType?: "folder"
| "searchFolder";
includeNestedFolders?: boolean;
limit?: number;
messageId?: string;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "add"
| "delete"
| "move"
| "download"
| "send"
| "reply"
| "getChildren"
| "getMime";
replyType?: "reply"
| "replyAll";
resource?:
| "message"
| "folder"
| "draft"
| "folderMessage"
| "messageAttachment";
returnAll?: boolean;
send?: boolean;
sourceFolderIds?: string;
subject?: string;
toRecipients?: string;
updateFields?: | {
displayName?: string;
filterQuery?: string;
includeNestedFolders?: boolean;
sourceFolderIds?: string;
}
| {
bccRecipients?: string;
bodyContent?: string;
bodyContentType?: "html"
| "Text";
categories?: unknown[];
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isRead?: boolean;
isReadReceiptRequested?: boolean;
replyTo?: string;
subject?: string;
toRecipients?: string;
};
}Properties§
§§§§§§§§§§§§§§§§§§
readonly additional Fields?:
| {
attachments?: {
attachments: { binaryPropertyName?: string }[];
};
bccRecipients?: string;
bodyContentType?: "html"
| "Text";
categories?: unknown[];
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isReadReceiptRequested?: boolean;
replyTo?: string;
toRecipients?: string;
}
| { recipients?: string }
| {
attachments?: {
attachments: { binaryPropertyName?: string }[];
};
bccRecipients?: string;
bodyContent?: string;
bodyContentType?: "html"
| "Text";
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isReadReceiptRequested?: boolean;
replyTo?: string;
subject?: string;
toRecipients?: string;
}
| {
attachments?: {
attachments: { binaryPropertyName?: string }[];
};
bccRecipients?: string;
bodyContentType?: "html"
| "Text";
categories?: unknown[];
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isReadReceiptRequested?: boolean;
replyTo?: string;
saveToSentItems?: boolean;
toRecipients?: string;
}
| { fileName?: string }
| { fields?: string; filter?: string }
| {
dataPropertyAttachmentsPrefixName?: string;
fields?: string;
filter?: string;
}§
readonly attachment Id?: string§readonly binary Property Name?: stringDefault: "data"
readonly body Content?: stringMessage body content
readonly comment?: stringA comment to include. Can be an empty string.
readonly display Name?: stringName of the folder
readonly filter Query?: stringThe OData query to filter the messages
readonly folder Id?: stringTarget Folder ID
readonly folder Type?: "folder" | "searchFolder"Folder Type Default: "folder"
readonly include Nested Folders?: booleanWhether to include child folders in the search
readonly limit?: numberMax number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
readonly message Id?: string§readonly operation?:
| "create"
| "get"
| "getAll"
| "update"
| "add"
| "delete"
| "move"
| "download"
| "send"
| "reply"
| "getChildren"
| "getMime"Default: "create"
readonly reply Type?: "reply" | "replyAll"Default: "reply"
readonly resource?:
| "message"
| "folder"
| "draft"
| "folderMessage"
| "messageAttachment"Default: "message"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly send?: booleanWhether to send the reply message directly. If not set, it will be saved as draft. Default: true
readonly source Folder Ids?: stringThe mailbox folders that should be mined Default: [] Type options: {"multipleValues":true}
readonly subject?: stringThe subject of the message
readonly to Recipients?: stringEmail addresses of recipients. Multiple can be added separated by comma.
readonly update Fields?:
| {
displayName?: string;
filterQuery?: string;
includeNestedFolders?: boolean;
sourceFolderIds?: string;
}
| {
bccRecipients?: string;
bodyContent?: string;
bodyContentType?: "html"
| "Text";
categories?: unknown[];
ccRecipients?: string;
from?: string;
importance?: "High" | "Low" | "Normal";
internetMessageHeaders?: {
headers: { name?: string; value?: string }[];
};
isRead?: boolean;
isReadReceiptRequested?: boolean;
replyTo?: string;
subject?: string;
toRecipients?: string;
}Fields to update Default: {}
Default: {}