Unable to return Teams meeting transcript content

Limahl Morgan 0 Reputation points
2023-01-27T10:45:22.8766667+00:00

I am trying to use Graph explorer to pull transcripts content. I am able to get the transcript details but when I try to pull content, I get the below error:

https://graph.microsoft.com/beta/users/fcf78226-a1be-48bd-af83-4bff1c3bd56f/onlineMeetings/MSpmY2Y3ODIyNi1hMWJlLTQ4YmQtYWY4My00YmZmMWMzYmQ1NmYqMCoqMTk6bWVldGluZ19ZelZqWkRkaU16RXRNRGxrTnkwME9UUTFMV0ZpT1RFdE0yUTBaalpqTTJRME0ySmtAdGhyZWFkLnYy/transcripts/MSMjMCMjYzJiZWJiN2EtM2Q3ZS00NTE0LWI2ZTktY2Y1M2VkN2RmMjY4/content

{
    "error": {
        "code": "BadRequest",
        "message": "Invalid format '
        "innerError": {
            "date": "2023-01-27T10:38:58",
            "request-id": "9f7c7c27-9350-44f0-8958-b54bff10618d",
            "client-request-id": "b93631a8-4cbb-7274-f43b-5f676606fe93"
        }
    }
}
Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,582 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2023-01-27T13:17:53.0266667+00:00

    Hi @Limahl Morgan ,

    Thanks for reaching out!

    To get meeting transcript content based on the transcript ID, you can use the following endpoint.

    GET https://graph.microsoft.com/beta/users/{userid}/onlineMeetings/{meetingid}/transcripts/{transcriptId}/content?$format=text/vtt

    The request transcripts for a specific meeting will be in txt/vtt format and the response payload will contain the transcripts in .vtt format.

    Reference document: Access and get meeting transcript based on the transcript ID.

    Hope this helps.

    If the reply is helpful, please click "Accept Answer" and kindly upvote it. If you have additional questions about this answer, please click "Comment".

    1 person found this answer helpful.