List checklistItems

Namespace: microsoft.graph

Get the checklistItem resources associated to a todoTask from the checklistItems navigation property.

Permissions

One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.

Permission type Permissions (from least to most privileged)
Delegated (work or school account) Tasks.Read, Tasks.ReadWrite
Delegated (personal Microsoft account) Tasks.Read, Tasks.ReadWrite
Application Tasks.Read.All, Tasks.ReadWrite.All

HTTP request

GET /me/todo/lists/{todoTaskListId}/tasks/{todoTaskId}/checklistItems
GET /users/{id | userPrincipalName}/todo/lists/{todoTaskListId}/tasks/{todoTaskId}/checklistItems

Optional query parameters

This method does not support OData query parameters to help customize the response. For general information, see OData query parameters.

Request headers

Name Description
Authorization Bearer {token}. Required.

Request body

Do not supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a collection of checklistItem objects in the response body.

Examples

Request

GET https://graph.microsoft.com/v1.0/me/todo/lists/AAMkADliMmU5YjJlLTVmMmQtNGQzNS1iYjA0LTdmZTA2NTI0MTE5YwAuAAAAAADdOMUbUmCfTKa7OC-fqjkdAQBnu3olF7NfToRyJ2f__TNcAAAAAAESAAA=/tasks/AAkALgAAAAAAHYQDEapmEc2byACqAC-EWg0AZ7t6JRezX06Ecidn-vkzXAABPDii4gAA/checklistitems

Response

Note: The response object shown here might be shortened for readability.

HTTP/1.1 200 OK
Content-Type: application/json

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('6f9a2a92-8527-4d64-937e-b5312852f35d')/todo/lists('AAMkADliMmU5YjJlLTVmMmQtNGQzNS1iYjA0LTdmZTA2NTI0MTE5YwAuAAAAAADdOMUbUmCfTKa7OC-fqjkdAQBnu3olF7NfToRyJ2f__TNcAAAAAAESAAA%3D')/tasks('AAkALgAAAAAAHYQDEapmEc2byACqAC-EWg0AZ7t6JRezX06Ecidn-vkzXAABPDii4gAA')/checklistItems",
    "value": [
        {
            "displayName": "Create draft",
            "createdDateTime": "2021-11-17T05:22:14.2207813Z",
            "isChecked": false,
            "id": "51d8a471-2e9d-4f53-9937-c33a8742d28f"
        },
        {
            "displayName": "Review with the team",
            "createdDateTime": "2021-11-17T05:22:43.0916521Z",
            "isChecked": false,
            "id": "a7720293-4ef9-45da-9056-e000796889fa"
        }
    ]
}