I'm developing a recording function based on this document.
(https://docs.microsoft.com/en-us/azure/communication-services/concepts/voice-video-calling/call-recording)
In the document,
'Microsoft.Communication.RecordingFileStatusUpdated' event should be called within a few minutes after the recording ends.
but, only 'Microsoft.Communication.CallRecordingStateChanged' events are requested my webapp's webhook twice.
'CallRecordingStateChanged' event information is nowhere to be found.
This is the full text of the event requested to webhook.
[{
"id":[GUID],
"source":"calling/callConnections/[GUID]/callRecordingState",
"type":"Microsoft.Communication.CallRecordingStateChanged",
"data": {
"recordingId":"[RECORDINGID]"
"state":"active", // or inactive
"startDateTime":"0001-01-01T00:00:00\u002B00:00",
"serverCallId":"[GUID]"
},
"time":"2021-08-31T05:41:06.2701635+00:00",
"specversion":"1.0",
"datacontenttype":"application/json",
"subject":"calling/callConnections/[GUID]/callRecordingState"
}]
