I am new to Microsoft Graph API. I am trying to make a call
https://graph.microsoft.com/beta/me/todo/lists?$select=displayName,id
in Graph Explorer, as I want only get id
and displayName
of the todotasklists
that I have access for.
When I run this in Graph Explorer, I am getting "Bad Request"-400 with error details as below:
"error": {
"code": "invalidRequest",
"message": "Invalid request",
"innerError": {
"code": "RequestBroker--ParseUri",
...
}
}
I am getting same error when I use $select
when use endpoint for getting all todoTasks present in a specific ToDoTaskList.
Is $select
not support for todoTaskList and todoTasks?
I am able to use the $select
when I make api call
https://graph.microsoft.com/v1.0/me/messages?$select=subject
I want only specific information like title and id about todotask to be returned and not all information about todoTask, same with todotasklist.