callRecordingEventMessageDetail 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 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. 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. |
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
- Example response for an event message about call recording
- For more information about other types of events, see System messages.