Questions tagged [microsoft-todo]

21 questions
0
votes
1 answer

Cannot access custom column values in To-do tasks via MS Graph API using Python

I have created custom columns "VESSEL NAME", "VOYAGE NUMBER", "ETD" and "CUT-OFF" in my Outlook To-do task as shown on the pic below. Outlook tasks snapshot I need to access values in those columns via MS Graph API, but have had no luck so far. Not…
0
votes
1 answer

MSGraph Delegated permissions given from an administrator

We have a problem consenting permissions and obtaining access tokens to call MSGraph API. Our product is like follows: We have an API that works with MSGraph. Until now, we have been using Aplication permissions to access resources as mail and…
0
votes
0 answers

Microsoft ToDo Graph API is sending broken JSON

I'm getting the response with invalid JSON (brackets aren't closed) when trying to get the MS ToDo task for the user. Also, API sends HTTP status 200 with that response. Request/response…
0
votes
1 answer

To-Do API: The Service is not available

When calling the MS Graph API on the endpoint https://graph.microsoft.com/beta/me/todo/lists, I get the following result (same when using v1.0 instead of beta): { "error": { "code": "UnknownError", "message": "The service is…
JRoppert
  • 5,854
  • 5
  • 32
  • 37
0
votes
1 answer

Unable to create ToDo Task using Graph API v1.0

I am trying to use the ToDo Task feature of graph api v1.0 to create a task using the following code var result = graphServiceClient.Users[outlookUserId].Todo.Lists[listid].Tasks.Request().AddAsync(todoTask).Result; However, I am getting the…
0
votes
1 answer

MS ToDo API is giving error for few users in Taskfolders Endpoint

MS ToDo API is giving error for few users when using following endpoint : https://outlook.office.com/api/v2.0/me/taskfolders Here is the piece of code : $accessToken = "eyJ0eXAiOiJKV1QiLCJub25jZSI6I*******sYVg0X0"; $url =…
1
2