Questions tagged [microsoft-graph-plannertasks]

Microsoft Graph Planner Tasks refers to the Planner Tasks APIs in Microsoft Graph. This tag should always be used in conjunction with the [microsoft-graph] tag.

32 questions
0
votes
1 answer

Microsoft Graph API: How to get url for Task in Planner?

I am using planner task API from Microsoft Graph APIs to get details of a task created in planner. Is there any way to Teams client URL for task from Graph APIs? In the API response I don't see any property like webUrl which can be seen for other…
Tejas Sutar
  • 747
  • 2
  • 11
  • 33
0
votes
1 answer

Check of Microsoft 365 Planner task was updated, if true then feedback with microsoft graph API

I am searching for a solution to get a automated feedback, when a planner task is changed. Why? We use a planner to assign task to a person in the team. This person can change the tasks details. I only get a feedback if the person finishes the…
0
votes
0 answers

Microsoft Graph API remove Check List Item

I have a plannerTask and in its Details it has a CheckList. I use it to programatically insert CheckListItems in it, and it all works like a charm when inserting or retrieving the tasks. My problem arrives when I am going to insert a new…
0
votes
1 answer

MS Graph API Update PlannerTask.ConversationThreadId

I want to update the "ConversationThreadId" field in a PlannerTask. This is my code: plannerTask = await graphClient.Planner.Tasks["XXXXXXXXX"].Request().GetAsync(); var eTagId = plannerTask.GetEtag(); plannerTask.ConversationThreadId =…
0
votes
1 answer

MS Graph API Group which contains a Plan

Basically I want to know which group contains the plan I am using. I know how to get which plans are in a group: GET https://graph.microsoft.com/v1.0/groups/{group-id}/planner/plans But not, given a plan, how to know which group contains it. Why do…
0
votes
0 answers

The encoded url from MS Teams planner not working as expected

I have an API that sends tasks to MS Tasks by Planner and To Do with attachments. Sample API body: payload = { ... "title": "I am sending task from python Notebook", "Notes": "Add some useful notes here", "attachments": [ …
GMAC
  • 788
  • 4
  • 23
0
votes
1 answer

How to create Planner Plan with calculated duedates for multible tasks

i am very new to MS Graph and Planner but i would like to generate a script where i define a Plan with mutiple tasks and i only have to specify the startDateTime of the first Task, so the dueDateTimes will be calculated automatically for each…
0
votes
1 answer

Planner Tasks Graph API: Update Task Issue

We have developed an application which calls Update Task Planner Graph API to update task in Planner App. The API was working fine until some recent change in the MS docs and now it keeps throwing below error. A type named…
0
votes
1 answer

Update Patch Microsoft Graph API Planner Task Detail using JSON cURL produces error 409 conflict

I receive a 409 error when trying to update a planner task, with the following error detail ... "The attempted changes conflicted with already accepted changes. Read the latest state and resolve differences." It seems to happen every time I try to…
0
votes
1 answer

Update Patch Microsoft Graph API Planner Task Detail using JSON cURL through FileMaker Pro produces error 204

After successfully creating a new Planner Task, I retrieve the Planner Task Detail ID and am trying to update the Task Detail. When doing so, I receive an error 204 "HTTP/1.1 204 No Content" I am trying to do this using FileMaker and their INSERT…
0
votes
1 answer

Graph API - Check if user has Full access to Office 365 Planner Task

Using graph API we requested oauth access token for planner task, I received the access token successfully. The token list the scopes as below Calendars.ReadWrite Contacts.ReadWrite Directory.Read.All Group.ReadWrite.All Notes.ReadWrite People.Read…
0
votes
1 answer

Microsoft Graph API : Get Tasks of users in a group with PHP

Hi I am trying to build a Dashboard that show summary of what happens in a Planner Plan, Calendar events and SharePoint files etc. I want to show users' task in different tables. I have managed to authorize and get the user list and get the all…
0
votes
1 answer

Microsoft Graph API - Getting Planner Task - Permission Error

I am using Microsoft Graph Explorer to test some get requests (e.g: https://graph.microsoft.com/beta/me/planner/tasks) and it works. I created the URL in the python script. The script contains also other get requests and they work like: get the…
0
votes
1 answer

Object Required error 424 when calling subroutine

I am trying to call a subroutine that will extend formulas to the last row when anything on Column B of the excel worksheet TitlesList changes. The formulas can not exist before anything is added, thus should only exist in a row after a change is…
0
votes
1 answer

Patch Planner Tasks Details Error - Bad request with Base-64 string Error

I am trying to call https://graph.microsoft.com/v1.0/planner/tasks/{{taskId}}/details with this request: { "checklist": { "552f6163-e7d3-4e31-9015-577b0e6cc997": { "@odata.type": "microsoft.graph.plannerChecklistItem", …