callTranscript resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents a transcript associated with an online meeting.

Methods

Method Return Type Description
List callTranscripts callTranscript collection Get the list of transcripts associated to an online meeting.
Get callTranscript callTranscript Read properties of a transcript.

Properties

Property Type Description
content Stream A field that represents the content of the transcript. Read-only.
createdDateTime DateTimeOffset Date and time at which the transcript was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
id String The unique identifier for the transcript. Read-only.
metadataContent Stream A field that represents the time-aligned metadata of the utterances in the transcript. Read-only.

JSON representation

The following is a JSON representation of the resource.

{
  "content": "stream",
  "createdDateTime": "dateTimeOffset",  
  "id": "string (identifier)",
  "metadataContent": "stream"
}