Suggest a new appointment time not supported by the Office 365 Graph API

When you host a meeting and one of the attendees responds with a new time suggestion, you cannot see the recently suggested time for the message object returned by the Office 365 API.

Here is a sample message object for such a response from the / messages endpoint:

{
        "@odata.type": "#microsoft.graph.eventMessage",
        "@odata.etag": "W/\"DAAAABYAAABScDrPb+rMTZOocc5vRCTLAAG358aD\"",
        "id": "AAMkADQ3MDg1NWRmLTUxMGQtNDRiMi1iMGE4LTAzMzdjNGRiYTIxNQBGAAAAAADEPuholyn_QpUTcq2qMEH4BwBScDrPb_rMTZOocc5vRCTLAAAAAAEMAABScDrPb_rMTZOocc5vRCTLAAG3qsuFAAA=",
        "createdDateTime": "2017-05-10T09:51:28Z",
        "lastModifiedDateTime": "2017-05-10T09:51:28Z",
        "changeKey": "DAAAABYAAABScDrPb+rMTZOocc5vRCTLAAG358aD",
        "categories": [],
        "receivedDateTime": "2017-05-10T09:51:28Z",
        "sentDateTime": "2017-05-10T09:51:26Z",
        "hasAttachments": false,
        "internetMessageId": "<HE1PR03MB3099233327E51F1BB6B2D56BABEC0@HE1PR03MB3099.eurprd03.prod.outlook.com>",
        "subject": "New Time Proposed: Test event",
        "bodyPreview": "",
        "importance": "normal",
        "parentFolderId": "AAMkADQ3MDg1NWRmLTUxMGQtNDRiMi1iMGE4LTAzMzdjNGRiYTIxNQAuAAAAAADEPuholyn_QpUTcq2qMEH4AQBScDrPb_rMTZOocc5vRCTLAAAAAAEMAAA=",
        "conversationId": "AAQkADQ3MDg1NWRmLTUxMGQtNDRiMi1iMGE4LTAzMzdjNGRiYTIxNQAQAOSfIUrJuYZEhvDlXsNH9lc=",
        "isDeliveryReceiptRequested": null,
        "isReadReceiptRequested": false,
        "isRead": false,
        "isDraft": false,
        "webLink": "https://outlook.office365.com/owa/?ItemID=AAMkADQ3MDg1NWRmLTUxMGQtNDRiMi1iMGE4LTAzMzdjNGRiYTIxNQBGAAAAAADEPuholyn%2BQpUTcq2qMEH4BwBScDrPb%2BrMTZOocc5vRCTLAAAAAAEMAABScDrPb%2BrMTZOocc5vRCTLAAG3qsuFAAA%3D&exvsurl=1&viewmodel=ReadMessageItem",
        "inferenceClassification": "focused",
        "meetingMessageType": "meetingTenativelyAccepted",
        "body": {
            "contentType": "html",
            "content": "<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta content=\"text/html; charset=us-ascii\">\r\n<style type=\"text/css\" style=\"display:none\">\r\n<!--\r\np\r\n\t{margin-top:0;\r\n\tmargin-bottom:0}\r\n-->\r\n</style>\r\n</head>\r\n<body dir=\"ltr\">\r\n<div id=\"divtagdefaultwrapper\" dir=\"ltr\" style=\"font-size:12pt; color:#000000; font-family:Calibri,Arial,Helvetica,sans-serif\">\r\n<p><br>\r\n</p>\r\n</div>\r\n</body>\r\n</html>\r\n"
        },
        "sender": {
            "emailAddress": {
                "name": "Sebastian Leonaris",
                "address": "sebastian@company.com"
            }
        },
        "from": {
            "emailAddress": {
                "name": "Sebastian Leonaris",
                "address": "sebastian@company.com"
            }
        },
        "toRecipients": [
            {
                "emailAddress": {
                    "name": "Laura Sinestra",
                    "address": "laura@company.com"
                }
            }
        ],
        "ccRecipients": [],
        "bccRecipients": [],
        "replyTo": []
    }

      

Is this a bug in the Office 365 Graph API, or is there some other way to achieve this?

Thanks in advance!

+3


source to share


1 answer


This is not supported yet. We have this in our roadmap, but we don't have time to release this support in the API.



0


source







All Articles