1

I am working on a usecase by integrating microsoft graph api to create calendar events. Below is the payload while creating an Outlook calendar event.

{
  "subject": "Test This Payload Again 2",
  "body": {
    "contentType": "HTML",
    "content": "Does late morning work for you?"
  },
  "start": {
      "dateTime": "2019-12-17T12:00:00",
      "timeZone": "UTC"
  },
  "end": {
      "dateTime": "2019-12-18T14:00:56.718",
      "timeZone": "UTC"
  },
  extensions:[
  {
    "@odata.type":"#microsoft.graph.openTypeExtension",
    "extensionName" : "CALENDAR CTX",
    "ctxType" : "CONTEXT",
    "ctxId" : "12345"
  }
  ],
  "singleValueExtendedProperties": [
     {
           "id":"String {66f5a359-4659-4830-9070-00040ec6ac6e} Name CONTEXT",
           "value":"12345"
     }
  ]
}

I have a usecase to add custom properties in the event and take some action during incremental sync using Delta Query. I tried to add extensions as well as singleValueExtendedProperties while creating, but not able to get the same payload (with extensions/singleValueExtendedProperties) during incremental sync using Delta Query. I am just getting the event resource.

Any help here is appreciated. Thanks !

4

1 回答 1

0

增量查询尚不支持此方案,您可以投票支持现有的uservoice 条目以帮助确定请求的优先级。它还将让您随时了解任何决定/进展。

于 2020-02-20T18:25:03.847 回答