Actually, I am creating Tasks by Graph API but I am looking for create Checklist items also with the Tasks or by calling another API. Can you please let me know about the EndPoint?
Actually, I am creating Tasks by Graph API but I am looking for create Checklist items also with the Tasks or by calling another API. Can you please let me know about the EndPoint?
I did it by PATCH API
https://graph.microsoft.com/v1.0/planner/tasks/{taskId}/details
Body:
{
"checklist": {
"1":{
"@odata.type": "microsoft.graph.plannerChecklistItem",
"title": "Update task details"
},
"2":{
"@odata.type": "microsoft.graph.plannerChecklistItem",
"title": "Task Comple"
}
}
}
Is this still working for you?
I have tried with the SDK (GetETag() returns null), with with Graph Explorer and with Postman. None work.
I then used Graph Explorer to create a sandbox with sample data thinking that the issue was maybe my organization or permissions and it still didn't work.
2 people are following this question.