interface MicrosoftOutlookTriggerNodeParameters {
event?: "messageReceived";
fields?: (
| "sender"
| "body"
| "subject"
| "bccRecipients"
| "bodyPreview"
| "categories"
| "ccRecipients"
| "changeKey"
| "conversationId"
| "createdDateTime"
| "flag"
| "from"
| "hasAttachments"
| "importance"
| "inferenceClassification"
| "internetMessageId"
| "isDeliveryReceiptRequested"
| "isDraft"
| "isRead"
| "isReadReceiptRequested"
| "lastModifiedDateTime"
| "parentFolderId"
| "receivedDateTime"
| "replyTo"
| "sentDateTime"
| "toRecipients"
| "webLink"
)[];
filters?: {
custom?: string;
foldersToExclude?: unknown[];
foldersToInclude?: unknown[];
hasAttachments?: boolean;
readStatus?: "read"
| "both"
| "unread";
sender?: string;
};
options?: {
attachmentsPrefix?: string;
downloadAttachments?: boolean;
};
output?: "simple"
| "fields"
| "raw";
pollTimes: {
item: { mode: string & {} | "everyMinute" }[];
};
}
Properties§
Source§readonly fields?: (
| "sender"
| "body"
| "subject"
| "bccRecipients"
| "bodyPreview"
| "categories"
| "ccRecipients"
| "changeKey"
| "conversationId"
| "createdDateTime"
| "flag"
| "from"
| "hasAttachments"
| "importance"
| "inferenceClassification"
| "internetMessageId"
| "isDeliveryReceiptRequested"
| "isDraft"
| "isRead"
| "isReadReceiptRequested"
| "lastModifiedDateTime"
| "parentFolderId"
| "receivedDateTime"
| "replyTo"
| "sentDateTime"
| "toRecipients"
| "webLink"
)[]
readonly fields?: (
| "sender"
| "body"
| "subject"
| "bccRecipients"
| "bodyPreview"
| "categories"
| "ccRecipients"
| "changeKey"
| "conversationId"
| "createdDateTime"
| "flag"
| "from"
| "hasAttachments"
| "importance"
| "inferenceClassification"
| "internetMessageId"
| "isDeliveryReceiptRequested"
| "isDraft"
| "isRead"
| "isReadReceiptRequested"
| "lastModifiedDateTime"
| "parentFolderId"
| "receivedDateTime"
| "replyTo"
| "sentDateTime"
| "toRecipients"
| "webLink"
)[]
The fields to add to the output Default: []
Default: "messageReceived"