我对 MS Graph 和 Planner 非常陌生,但我想生成一个脚本,在其中定义一个包含多个任务的计划,并且我只需要指定第一个任务的 startDateTime,因此会为每个任务自动计算 dueDateTimes。
首先如何在一个脚本中创建多个任务?
如何计算和修改dueDateTime 类型?
POST https://graph.microsoft.com/v1.0/planner/tasks
Content-type: application/json
Content-length: 285
{
"planId": "PLAN1",
"bucketId": "BUCKETID",
"title": "New Task1",
"startDateTime1": "2021-07-01T10:00:00Z",
"dueDateTime1": "'startDatetime1+15days'",
"assignments": {}
}
{
"planId": "PLAN1",
"bucketId": "BUCKETID2",
"title": "New Task2",
"startDateTime2": "'dueDateTime1+10days'",
"dueDateTime2": "'startDateTime2+10days'",
"assignments": {}
}
....(根据第一个 startDate 添加 8Tasks 所有日期)
希望这个带有一些伪代码的示例有所帮助
非常感谢您提前
问候恶习