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§
Source§readonly additional Fields?:
| { externalId?: string; webUrl?: string }
| {
content?: string;
dueDateTime?: string;
importance?: "normal" | "low" | "high";
reminderDateTime?: string;
status?:
| "deferred"
| "inProgress"
| "completed"
| "notStarted"
| "waitingOnOthers";
}
readonly additional Fields?:
| { externalId?: string; webUrl?: string }
| {
content?: string;
dueDateTime?: string;
importance?: "normal" | "low" | "high";
reminderDateTime?: string;
status?:
| "deferred"
| "inProgress"
| "completed"
| "notStarted"
| "waitingOnOthers";
}
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
Source§readonly task List Id?: string
readonly task List Id?: string
Choose from the list, or specify an ID using an expression Type options: {"loadOptionsMethod":"getTaskLists"}
Source§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;
}
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: {}