Sep 06 2016 05:07 AM
Hi,
I'm having issues adding comments to tasks in planner using the graph api. I tried looking at the conversation id and tried posting to corresponding O365 but had no succes on adding comments to tasks. Can anybody help me out with this?
Regards,
Robin
Sep 07 2016 09:05 AM
@ErayC, do you know who might be able to help answer this question?
Oct 18 2016 07:10 PM
Oct 19 2016 12:06 AM
Maybe @SanthoshB1 could help here
Oct 19 2016 04:57 AM
Oct 19 2016 07:33 AM
Nov 30 2017 02:41 AM
Hello,
Sorry "A year later", I was looking to do the same thing and find this post.
I used https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/conversationthread_reply to understand how to publish a new comment from Graph
with POST https://graph.microsoft.com/v1.0/groups/[GroupID]/threads/[ConversationID]/reply
And body content like
{ "post": { "body": { "contentType": "1", "content": "Hello from Graph" } } }
To find the conversationID i use:
https://graph.microsoft.com/v1.0/groups/[GroupID]/threads
or
https://graph.microsoft.com/v1.0/Planner/Plans/[PlanId]/tasks
or
https://graph.microsoft.com/v1.0/Planner/tasks/[TaskID]
To find PlanID or GroupId, just browse to you planner, it's in the URL
Let's play with this 🙂
/Christophe
Sep 04 2019 09:37 AM
I tried with graph explorer it shows success but it doesnot post the comment in the planner task@Christophe DION What am I missing here. Problem is I can get conversation thread id once the first comment is posted but to post the first comment your way is not working
Dec 15 2020 04:01 AM
Jun 21 2022 06:02 AM