Skip to content

Latest commit

 

History

History
66 lines (54 loc) · 2.08 KB

File metadata and controls

66 lines (54 loc) · 2.08 KB
title callRecordingEventMessageDetail resource type
description Represents the details of an event message about call recording.
author RamjotSingh
ms.localizationpriority medium
ms.subservice teams
doc_type resourcePageType
ms.date 07/22/2024

callRecordingEventMessageDetail resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the details of an event message about call recording. This message is generated when a call recording starts.

Inherits from eventMessageDetail.

Properties

Property Type Description
callId String Unique identifier of the call.
callRecordingDisplayName String Display name for the call recording.
callRecordingDuration Duration Duration of the call recording.
callRecordingStatus callRecordingStatus Status of the call recording. The possible values are: success, failure, initial, chunkFinished, unknownFutureValue.
callRecordingUrl String Call recording URL.
initiator identitySet Initiator of the event.
meetingOrganizer identitySet Organizer of the meeting.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.callRecordingEventMessageDetail",
  "callId": "String",
  "callRecordingDisplayName": "String",
  "callRecordingUrl": "String",
  "callRecordingDuration": "String (duration)",
  "callRecordingStatus": "String",
  "meetingOrganizer": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "initiator": {
    "@odata.type": "microsoft.graph.identitySet"
  }
}

Related content