todoTaskList resource type

Namespace: microsoft.graph

A list in Microsoft To Do that contains one or more todoTask resources.

In To Do, there are built-in task lists such as Flagged emails and Tasks which cannot be renamed or deleted. You can, however, create additional task lists.

This resource supports

  • Adding your data to custom properties as open extensions
  • Using delta query to track incremental additions, deletions and updates.

Methods

Method Return type Description
List lists todoTaskList collection Get all the todoTaskList in the user's mailbox.
Create todoTaskList todoTaskList Create a todoTaskList in the user's mailbox.
Get task list todoTaskList Read the properties and relationships of the specified todoTaskList.
Update task list todoTaskList Update the writable properties of the specified todoTaskList.
Delete task list None Delete the specified todoTaskList .
List tasks todoTask collection Get all the todoTask resources in the specified list.
Create task todoTask Create a todoTask in the specified task list.

Properties

Property Type Description
displayName String The name of the task list.
id String The identifier of the task list, unique in the user's mailbox. Read-only. Inherited from entity
isOwner Boolean True if the user is owner of the given task list.
isShared Boolean True if the task list is shared with other users
wellknownListName wellknownListName Property indicating the list name if the given list is a well-known list. Possible values are: none, defaultList, flaggedEmails, unknownFutureValue.

wellknownListName values

Member Description
none User created list.
defaultList Built-in Tasks list.
flaggedEmails Built-in Flagged email list. Tasks from flagged emails are present in this list.
unknownFutureValue Evolvable enumeration sentinel value. Do not use.

Relationships

Relationship Type Description
extensions extension collection The collection of open extensions defined for the task list. Nullable.
tasks todoTask collection The tasks in this task list. Read-only. Nullable.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.todoTaskList",
  "id": "String (identifier)",
  "displayName": "String",
  "isOwner": "Boolean",
  "isShared": "Boolean",
  "wellknownListName": "String"
}