o365 api events不允许参与者编辑时间/添加更多用户

时间:2015-09-08 19:06:21

标签: api outlook o365rwsclient

我使用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"
    }
  ]
}

谢谢!

0 个答案:

没有答案