Forum Discussion
- Microsoft Graph is the unified API to work with all the Office 365 services: https://msdn.microsoft.com/en-us/office/office365/howto/platform-development-overview
- Ryan StoneIron Contributor
Right I kinda assume that. Looking for a code sample explicity showing creating a card in a Planner bucket. So far I haven't come across anything.
- Dylan SaboCopper Contributor
POST
https://graph.microsoft.com/beta/planner/tasks{
"planId": "Plan ID String",
"bucketId": "Bucket ID String",
"title": "Testing Task 1",
"assignments": {
"User Assigned to ID Number": {
"@odata.type": "#microsoft.graph.plannerAssignment",
"orderHint": " !"
}
},
}