interface MicrosoftToDoNodeParameters {
additionalFields?:
| { externalId?: string; webUrl?: string }
| {
content?: string;
dueDateTime?: string;
importance?: "normal" | "low" | "high";
reminderDateTime?: string;
status?:
| "deferred"
| "inProgress"
| "completed"
| "notStarted"
| "waitingOnOthers";
};
applicationName?: string;
displayName?: string;
limit?: number;
linkedResourceId?: string;
listId?: string;
operation?: | "create"
| "get"
| "getAll"
| "update"
| "delete";
resource?: "list"
| "task"
| "linkedResource";
returnAll?: boolean;
taskId?: string;
taskListId?: string;
title?: string;
updateFields?:
| {
applicationName?: string;
displayName?: string;
externalId?: string;
webUrl?: string;
}
| {
content?: string;
dueDateTime?: string;
importance?: "normal"
| "low"
| "high";
reminderDateTime?: string;
status?:
| "deferred"
| "inProgress"
| "completed"
| "notStarted"
| "waitingOnOthers";
title?: string;
};
}Properties§
§§§§§§§§§§
readonly additional Fields?:
| { externalId?: string; webUrl?: string }
| {
content?: string;
dueDateTime?: string;
importance?: "normal" | "low" | "high";
reminderDateTime?: string;
status?:
| "deferred"
| "inProgress"
| "completed"
| "notStarted"
| "waitingOnOthers";
}§
readonly application Name?: stringApp name of the source that is sending the linked entity
readonly display Name?: stringField indicating title of the linked entity
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
readonly linked Resource Id?: string§readonly list Id?: stringThe identifier of the list, unique in the user's mailbox
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"Default: "get"
readonly resource?: "list" | "task" | "linkedResource"Default: "task"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly task Id?: string§readonly task List Id?: stringChoose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTaskLists"}
readonly title?: stringA brief description of the task
readonly update Fields?:
| {
applicationName?: string;
displayName?: string;
externalId?: string;
webUrl?: string;
}
| {
content?: string;
dueDateTime?: string;
importance?: "normal"
| "low"
| "high";
reminderDateTime?: string;
status?:
| "deferred"
| "inProgress"
| "completed"
| "notStarted"
| "waitingOnOthers";
title?: string;
}Default: {}
Default: {}