Is there any Microsoft Graph API for getting Online Meeting name - Length? for Microsoft team.
Please help me out on this as I didn't find any API for this.
Is there any Microsoft Graph API for getting Online Meeting name - Length? for Microsoft team.
Please help me out on this as I didn't find any API for this.
Hi! There is no direct way to request length, but you can get it pretty easily. Follow this documentation for example requests. You can make a function that subtracts the start time of the meeting from the end time.
"start": {
"dateTime": "2017-08-14T21:00:00.0000000",
"timeZone": "UTC"
},
"end": {
"dateTime": "2017-08-14T22:00:00.0000000",
"timeZone": "UTC"
},
I hope this helps! Please let me know if you have any other questions.
Hi @JamesHamil-MSFT , Thank you for answer.
I check the above solution, it is working fine to get the meeting name, but my question is how to get the length of online meeting name?? Is there any API for that or not for msteams using graph API ??
Please help me out.
My apologies, I misread your initial question. We don't have a direct way of getting the length of the meeting name, but this too can be done by getting the meeting name and running a custom function. You could also use String.Length. Feel free to create a feature request here for an API.
1 Person is following this question.