question

NikitaPandey-4461 avatar image
0 Votes"
NikitaPandey-4461 asked azure-cxp-api edited

Is there any Microsoft Graph API for getting Online Meeting name - Length? for Microsoft team.

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.

azure-ad-graph
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

JamesHamil-MSFT avatar image
0 Votes"
JamesHamil-MSFT answered JamesHamil-MSFT commented

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.




· 2
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

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.

0 Votes 0 ·

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.


0 Votes 0 ·