Forum Discussion
API: get video recording link via Microsoft Teams
demian123 - As for obtaining the recording URL from the calendar event, it seems that the meeting recording URLs are not directly available from the calendar event details.
chatMessage resource type - Microsoft Graph beta | Microsoft Learn
Thanks,
Prasad Das
------------------------------------------------------------------------------------------
If the response is helpful, please click "**Mark as Best Response**" and like it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.
- demian123Mar 29, 2024Copper Contributor
Prasad_Das-MSFT Thanks for the reply, I tried this but the eventMessageDetail field for channel recording is null in this case when I tried with the Graph Explorer. How to find the recording link for channel recordings?
- Prasad_Das-MSFTApr 01, 2024
Microsoft
demian123 - We are checking this with engineering team. We will update you once we get any info.
Thanks!- Prasad_Das-MSFTSep 24, 2026
Microsoft
For channel meetings, getAllRecordings currently does not support channel recordings. However, Microsoft Graph system messages support callRecordingEventMessageDetail for both Chat and Channel.
For a channel recording, you can retrieve the channel messages using:
GET /teams/{team-id}/channels/{channel-id}/messages
and look for a systemEventMessage where eventDetail is callRecordingEventMessageDetail.
Ref: Get system messages for Microsoft Teams - Microsoft Graph | Microsoft LearnGet system messages for Microsoft Teams - Microsoft Graph | Microsoft Learn