Microsoft graph api预订-与onlinemeeting集成

问题描述 投票:0回答:1

我已经创建了带有office365页面的预订页面,任何用户都可以在其中创建约会。现在,我必须创建一个使用Microsoft图形api的更好的gui。

当用户在默认的office365页面(https://outlook.office365.com/owa/calendar/[email protected]/bookings/)中创建约会时,将向用户发送短信,并且电子邮件确认中具有指向在线会议的链接。

当我通过Microsoft Graph API创建约会时,该约会创建成功,但是未发送SMS,并且电子邮件确认没有指向onlinemeeting的链接。

为了创建约会,我发送这样的帖子:

POST
https://graph.microsoft.com/beta/bookingBusinesses/[email protected]/appointments

{
    "customerEmailAddress": "[email protected]",
    "customerName": "My Name",
    "customerPhone": "573001234567",
    "customerNotes": "My Comments",
    "start": {
        "@odata.type":"#microsoft.graph.dateTimeTimeZone",
        "dateTime": "2020-04-25T09:00:00-05:00",
        "timeZone": "America/Bogota"
    },
    "end": {
        "@odata.type":"#microsoft.graph.dateTimeTimeZone",
        "dateTime": "2020-04-25T09:30:00-05:00",
         "timeZone": "America/Bogota"
    },
    "serviceId": "abcde-fgh-4ba6-b559-78cdd849339f",
    "staffMemberIds": [
        "abcde-fghe-4ecc-83cf-eddaf12861bb"
    ]
}

是否有通过api图创建约会的方法,该图将SMS确认发送给用户并链接到电子邮件确认中的onlinemeeting?

谢谢!

microsoft-graph appointment microsoft-live-meeting microsoft-graph-booking
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.