daylamtayari / Microsoft-To-Do-Export

Export all Microsoft To Do lists and tasks to importable formats.
GNU General Public License v3.0
16 stars 2 forks source link

It seems that the default task list data is not available #1

Open nvozno opened 2 years ago

nvozno commented 2 years ago

By default there is a task list, or you can create a new task list. It seems that the default task list data is not available.

nvozno commented 2 years ago

GET https://graph.microsoft.com/beta/me/todo/lists

RESPONSE: "wellknownListName": "defaultList",

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#users('UUID')/todo/lists",
    "value": [
        {
            "@odata.etag": "",
            "displayName": "defaultList",
            "isOwner": true,
            "isShared": false,
            "wellknownListName": "defaultList",
            "id": ""
        },
        {
            "@odata.etag": "",
            "displayName": "1",
            "isOwner": true,
            "isShared": false,
            "wellknownListName": "none",
            "id": ""
        },
        {
            "@odata.etag": "",
            "displayName": "2",
            "isOwner": true,
            "isShared": false,
            "wellknownListName": "none",
            "id": ""
        }
    ]
}