4

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.

James Z
  • 12,209
  • 10
  • 24
  • 44
Arirul
  • 51
  • 2

1 Answers1

1

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

user2250152
  • 14,658
  • 4
  • 33
  • 57