Skip to content

How can I create a Planner Task Checklist? #2083

Closed Answered by andrueastman
Gopher2000 asked this question in Q&A
Discussion options

You must be logged in to vote

This should be resolved in the latest version 5.24.0 by specifying the type PlannerChecklistItem

        foreach (var i in checklistItems)
        {
            requestBody.Checklist.AdditionalData.Add(Guid.NewGuid().ToString(),
                new PlannerChecklistItem
                {
                    OdataType = "microsoft.graph.plannerChecklistItem",
                    Title = i,
                    IsChecked = false
                }
             );
        }

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Gopher2000
Comment options

Answer selected by andrueastman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants