我正在使用 office api 创建 Outlook 事件。结果将不允许参加者编辑活动的开始/结束时间或将更多人添加到活动中(与 Outlook 创建的活动不同)。
有没有我缺少的参数来做到这一点?我目前正在使用这些文档:https ://msdn.microsoft.com/office/office365/APi/calendar-rest-operations#CreateEvents并以此处显示的格式发布:
{
"Subject": "Discuss the Calendar REST API",
"Body": {
"ContentType": "HTML",
"Content": "I think it will meet our requirements!"
},
"Start": "2014-02-02T18:00:00-08:00",
"StartTimeZone": "Pacific Standard Time",
"End": "2014-02-02T19:00:00-08:00",
"EndTimeZone": "Pacific Standard Time",
"Attendees": [
{
"EmailAddress": {
"Address": "janets@a830edad9050849NDA1.onmicrosoft.com",
"Name": "Janet Schorr"
},
"Type": "Required"
}
]
}
谢谢!