Skip to content

Latest commit

 

History

History
63 lines (53 loc) · 3.01 KB

File metadata and controls

63 lines (53 loc) · 3.01 KB
title checklistItem resource type
description Represents a collection of checklist items on a task.
author avijityadav
ms.localizationpriority medium
ms.subservice outlook
doc_type resourcePageType
ms.date 05/23/2024

checklistItem resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

[!INCLUDE todo-deprecate-basetaskapi-sharedfeature]

Represents a subtask in a bigger todoTask. ChecklistItem allows breaking down a complex task into more actionable, smaller tasks.

Methods

Method Return type Description
List checklistItem collection Get a list of the checklistItem objects and their properties associated to a specified todoTask.
Create checklistItem Create a new checklistItem object associated to a specified todoTask.
List checklistItems (deprecated) checklistItem collection Get a list of the checklistItem objects and their properties associated to a specified baseTask.
Create checklistItem (deprecated) checklistItem Create a new checklistItem object associated to a specified baseTask.
Get checklistItem Read the properties and relationships of a checklistItem object.
Update checklistItem Update the properties of a checklistItem object.
Delete None Delete a checklistItem object.

Properties

Property Type Description
checkedDateTime DateTimeOffset The date and time when the checklistItem was finished.
createdDateTime DateTimeOffset The date and time when the checklistItem was created.
displayName String Indicates the title of the checklistItem.
id String Server generated ID for the checkListItem
isChecked Boolean State that indicates whether the item is checked off or not.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.checklistItem",
  "createdDateTime": "String (timestamp)",
  "checkedDateTime": "String (timestamp)",
  "displayName": "String",
  "id": "String (identifier)",
  "isChecked": "Boolean"
}