Issue in migrating outlook task api (getAllTasks) to graph To-do task api

Viewed 34

We are in the process of Migrating from Outlook APIs to Graph Microsoft APIs.

We are unable to migrate task API as we don't find any graph API documentation relating to getAllTasks.

Please help us to find this API.

1 Answers

getAllTasks should be related to List Todo task endpoint

GET /me/todo/lists/{todoTaskListId}/tasks

A todoTask represents a task, i.e. a piece of work or personal item that can be tracked and completed.

You need to know todoTaskListId of todoTaskList. A todoTaskList represents a logical container of todoTask resources.

Resources:

Microsoft To Do API

Related