使用Outlook rest api更新事件时出错

时间:2018-05-14 15:20:26

标签: json microsoft-graph outlook-restapi

我使用Outlook REST API更新定期事件。 我有一个每周一重复的周活动。如果我尝试编辑一次发送PATCH请求的时间(而不是整个日期),我会收到错误:

{
  "error": {
    "code": "ErrorPropertyValidationFailure",
    "message": "At least one property failed validation."
  }
}

这是我的要求机构:

{
"subject":"test",
"body":"<!-- converted from text -->\n<div class=\"PlainText\"> </div>",
"contentType":1,
"locationName":"",
"start":"2018-05-14T13:30:00.000Z",
"end":"2018-05-14T14:30:00.000Z",
"isAllDay":false,
"isPrivate":false,
"attendees":[
{
"name":"...",
"email":"..."
},
{
"name":"...",
"email":"..."
}
],
"reminderMinutes":[
"30"
],
"noReminder":false
}

对于另一个帐户,相同的请求正在运行。

为什么会发生这种情况的任何想法?

1 个答案:

答案 0 :(得分:0)

您正在更新start,而不是end。很可能它失败了,因为你在<{em> start之后告诉它end