checklistItem resource type
Namespace: microsoft.graph
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 checklistItems | checklistItem collection | Get a list of the checklistItem objects and their properties. |
Create checklistItem | checklistItem | Create a new checklistItem object. |
Get checklistItem | checklistItem | Read the properties and relationships of a checklistItem object. |
Update checklistItem | checklistItem | Update the properties of a checklistItem object. |
Delete checklistItem | None | Deletes 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 | Field indicating the title of checklistItem. |
id | String | Server generated ID for the checkListItem |
isChecked | Boolean | State indicating whether the item is checked off or not. |
Relationships
None.
JSON representation
The following is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.checklistItem",
"checkedDateTime": "String (timestamp)",
"createdDateTime": "String (timestamp)",
"displayName": "String",
"id": "String (identifier)",
"isChecked": "Boolean"
}
Feedback
Submit and view feedback for