diff --git a/sdk/communication/azure-communication-callautomation/assets.json b/sdk/communication/azure-communication-callautomation/assets.json index 05d7b349d6af..21b7d98c5e78 100644 --- a/sdk/communication/azure-communication-callautomation/assets.json +++ b/sdk/communication/azure-communication-callautomation/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "java", "TagPrefix": "java/communication/azure-communication-callautomation", - "Tag": "java/communication/azure-communication-callautomation_6dc9a150d6" + "Tag": "java/communication/azure-communication-callautomation_33108318f9" } diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/StreamingData.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/StreamingData.java index 26d47317ac13..04327c0157bf 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/StreamingData.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/StreamingData.java @@ -22,7 +22,7 @@ /** The abstract class used as parent of Streaming data such as Audio, Transcription, or Captions. */ public abstract class StreamingData { - private StreamingDataKind streamingDataKind; + private final StreamingDataKind streamingDataKind; /** * Creates an instance of {@link StreamingData}. diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TranscriptionOptions.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TranscriptionOptions.java index dec78a4d3c56..cbf792e9f2b8 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TranscriptionOptions.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TranscriptionOptions.java @@ -3,7 +3,6 @@ package com.azure.communication.callautomation.models; -import com.azure.communication.callautomation.implementation.models.WebSocketTranscriptionOptionsInternal; import com.azure.core.annotation.Fluent; /** The TranscriptionOptions model. */ diff --git a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationAsyncClientAutomatedLiveTests.java b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationAsyncClientAutomatedLiveTests.java index d32417718c58..9d27fa209ebb 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationAsyncClientAutomatedLiveTests.java +++ b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationAsyncClientAutomatedLiveTests.java @@ -196,7 +196,7 @@ public void createVOIPCallAndRejectAutomatedTest(HttpClient httpClient) { assertNotNull(callerConnectionId); // wait for the incomingCallContext - String incomingCallContext = waitForIncomingCallContext(uniqueId, Duration.ofSeconds(10)); + String incomingCallContext = waitForIncomingCallContext(uniqueId, Duration.ofSeconds(20)); assertNotNull(incomingCallContext); // rejet the call diff --git a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationUnitTestBase.java b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationUnitTestBase.java index 214559eeccc5..ee4430361b34 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationUnitTestBase.java +++ b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationUnitTestBase.java @@ -25,10 +25,7 @@ import com.azure.communication.callautomation.implementation.models.PhoneNumberIdentifierModel; import com.azure.communication.callautomation.models.MediaStreamingAudioChannel; import com.azure.communication.callautomation.models.MediaStreamingOptions; -import com.azure.communication.callautomation.models.MediaStreamingContentType; -import com.azure.communication.callautomation.models.MediaStreamingTransport; import com.azure.communication.callautomation.models.TranscriptionOptions; -import com.azure.communication.callautomation.models.StreamingTransport; import com.azure.communication.common.CommunicationUserIdentifier; import com.azure.core.http.HttpClient; import com.azure.core.http.HttpHeaders; diff --git a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallMediaAsyncAutomatedLiveTests.java b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallMediaAsyncAutomatedLiveTests.java index dfd0e78d8c08..df9d34d90848 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallMediaAsyncAutomatedLiveTests.java +++ b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallMediaAsyncAutomatedLiveTests.java @@ -24,15 +24,12 @@ import com.azure.communication.phonenumbers.models.PurchasedPhoneNumber; import com.azure.communication.callautomation.models.CallParticipant; import com.azure.communication.callautomation.models.MediaStreamingAudioChannel; -import com.azure.communication.callautomation.models.MediaStreamingContentType; import com.azure.communication.callautomation.models.MediaStreamingOptions; -import com.azure.communication.callautomation.models.MediaStreamingTransport; import com.azure.communication.callautomation.models.TranscriptionOptions; import com.azure.communication.callautomation.models.StartMediaStreamingOptions; import com.azure.communication.callautomation.models.StopMediaStreamingOptions; import com.azure.communication.callautomation.models.StartTranscriptionOptions; import com.azure.communication.callautomation.models.StopTranscriptionOptions; -import com.azure.communication.callautomation.models.StreamingTransport; import com.azure.communication.callautomation.models.events.MediaStreamingStarted; import com.azure.communication.callautomation.models.events.MediaStreamingStopped; import com.azure.communication.callautomation.models.events.TranscriptionStarted; diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallAndUnmixedAudioTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallAndUnmixedAudioTest.json index 0bb5b5dca4ff..54e92234d92e 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallAndUnmixedAudioTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallAndUnmixedAudioTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"d4a4de0e-22bc-447b-956a-bd07392b8d50\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-86ce-4b60-8520-dcf7a51fb423\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d4a4de0e-22bc-447b-956a-bd07392b8d50\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:23.997544\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-86ce-4b60-8520-dcf7a51fb423\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d4a4de0e-22bc-447b-956a-bd07392b8d50\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:08:24.1018019\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-86ce-4b60-8520-dcf7a51fb423\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d4a4de0e-22bc-447b-956a-bd07392b8d50\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:28.763855\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-86ce-4b60-8520-dcf7a51fb423\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d4a4de0e-22bc-447b-956a-bd07392b8d50\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:29.156359\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"02002680-86ce-4b60-8520-dcf7a51fb423\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d4a4de0e-22bc-447b-956a-bd07392b8d50\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:08:29.2196006\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-86ce-4b60-8520-dcf7a51fb423\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"bc5d7e7b-92f0-43f5-80c5-fe5a35ea40f8\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bc5d7e7b-92f0-43f5-80c5-fe5a35ea40f8\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:16.5681527\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bc5d7e7b-92f0-43f5-80c5-fe5a35ea40f8\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:25:16.7573562\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bc5d7e7b-92f0-43f5-80c5-fe5a35ea40f8\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:21.5656009\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bc5d7e7b-92f0-43f5-80c5-fe5a35ea40f8\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:21.676686\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bc5d7e7b-92f0-43f5-80c5-fe5a35ea40f8\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:21.8002998\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"1a006780-0481-4472-a2b1-6d4535fbe7f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bc5d7e7b-92f0-43f5-80c5-fe5a35ea40f8\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:25:21.9042843\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0481-4472-a2b1-6d4535fbe7f9\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallUnmixedAudioAffinityTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallUnmixedAudioAffinityTest.json index 17482e2340cc..e57776a8ff8a 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallUnmixedAudioAffinityTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createACSCallUnmixedAudioAffinityTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"644549a3-a490-406b-af1b-d37e97015635\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"644549a3-a490-406b-af1b-d37e97015635\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:39.5825132\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"644549a3-a490-406b-af1b-d37e97015635\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:08:39.6916879\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"644549a3-a490-406b-af1b-d37e97015635\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:44.31165\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"644549a3-a490-406b-af1b-d37e97015635\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:44.6575964\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"02002680-4f24-4b66-8ed4-7c4f8a89aeb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"644549a3-a490-406b-af1b-d37e97015635\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:08:44.6883391\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4f24-4b66-8ed4-7c4f8a89aeb5\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"50ec6af4-c997-47c8-8906-6952b9f4bfd9\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"2f006680-4d6f-4007-a294-7046647ad887\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"50ec6af4-c997-47c8-8906-6952b9f4bfd9\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:29.5616761\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"2f006680-4d6f-4007-a294-7046647ad887\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"50ec6af4-c997-47c8-8906-6952b9f4bfd9\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:25:29.7195029\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"2f006680-4d6f-4007-a294-7046647ad887\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"50ec6af4-c997-47c8-8906-6952b9f4bfd9\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:32.8500256\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"2f006680-4d6f-4007-a294-7046647ad887\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"50ec6af4-c997-47c8-8906-6952b9f4bfd9\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:32.9597252\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"2f006680-4d6f-4007-a294-7046647ad887\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"50ec6af4-c997-47c8-8906-6952b9f4bfd9\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:25:33.0701797\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/2f006680-4d6f-4007-a294-7046647ad887\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyCancelAddParticipant.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyCancelAddParticipant.json index d084f5efff01..caaa950532da 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyCancelAddParticipant.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyCancelAddParticipant.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-041f-4f89-8c8b-466dd6f1b4a7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-041f-4f89-8c8b-466dd6f1b4a7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:16.7627743\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-041f-4f89-8c8b-466dd6f1b4a7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-4070-4025-b322-1290aa547bb9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:16.7745349\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-041f-4f89-8c8b-466dd6f1b4a7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-041f-4f89-8c8b-466dd6f1b4a7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:04:16.8577741\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-041f-4f89-8c8b-466dd6f1b4a7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-4070-4025-b322-1290aa547bb9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:04:16.8673266\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-4070-4025-b322-1290aa547bb9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:19.4427645\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-041f-4f89-8c8b-466dd6f1b4a7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-041f-4f89-8c8b-466dd6f1b4a7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:19.4302397\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-041f-4f89-8c8b-466dd6f1b4a7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\",\"type\":\"Microsoft.Communication.CancelAddParticipantSucceeded\",\"data\":{\"invitationId\":\"cb5a01a3-a7a2-4c05-b9b4-60097b3bc2a9\",\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"addParticipants failed for participant 8:acs:6d889502-3d7a-41a8-befa-d21fd80e8767_00000027-8d08-2df1-f883-08482200af55. Underlying reason: The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"02002680-4070-4025-b322-1290aa547bb9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d64e9969-2937-47ed-b37e-bebf3d6b732c\",\"publicEventType\":\"Microsoft.Communication.CancelAddParticipantSucceeded\"},\"time\":\"2025-05-20T10:04:21.9352855\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-4070-4025-b322-1290aa547bb9\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"acbc8456-d4fe-4557-9199-37755d53029c\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-643f-48eb-a90e-e4fb30c72b99\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-643f-48eb-a90e-e4fb30c72b99\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"acbc8456-d4fe-4557-9199-37755d53029c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:14.4369087\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-643f-48eb-a90e-e4fb30c72b99\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-ccea-44cb-983f-62d1f15a3bf5\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-ccea-44cb-983f-62d1f15a3bf5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"acbc8456-d4fe-4557-9199-37755d53029c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:14.4369087\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-ccea-44cb-983f-62d1f15a3bf5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-643f-48eb-a90e-e4fb30c72b99\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-643f-48eb-a90e-e4fb30c72b99\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"acbc8456-d4fe-4557-9199-37755d53029c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:22:14.5945456\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-643f-48eb-a90e-e4fb30c72b99\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-ccea-44cb-983f-62d1f15a3bf5\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-ccea-44cb-983f-62d1f15a3bf5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"acbc8456-d4fe-4557-9199-37755d53029c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:22:14.5469616\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-ccea-44cb-983f-62d1f15a3bf5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-643f-48eb-a90e-e4fb30c72b99\",\"type\":\"Microsoft.Communication.CancelAddParticipantSucceeded\",\"data\":{\"invitationId\":\"23ecbf4d-2600-4c4f-9781-adfa0d14dc6a\",\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"addParticipants failed for participant 8:acs:6d889502-3d7a-41a8-befa-d21fd80e8767_00000027-98e5-dac3-e84c-09bd456046cc. Underlying reason: The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"1a006780-643f-48eb-a90e-e4fb30c72b99\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"acbc8456-d4fe-4557-9199-37755d53029c\",\"publicEventType\":\"Microsoft.Communication.CancelAddParticipantSucceeded\"},\"time\":\"2025-05-22T17:22:18.5696007\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-643f-48eb-a90e-e4fb30c72b99\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyRemoveParticipantAutomatedTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyRemoveParticipantAutomatedTest.json index 6d479769ef78..f555d81c2368 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyRemoveParticipantAutomatedTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenAddParticipantFinallyRemoveParticipantAutomatedTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:55.0766211\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:55.0766211\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:55.1703179\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:55.2023253\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:59.6119755\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:59.7827164\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:59.8160796\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.AddParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.AddParticipantSucceeded\"},\"time\":\"2025-05-20T10:03:59.7915208\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.1728047\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:59.7889225\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":7,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.5511486\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.1571225\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":8,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.9288749\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":7,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.1728047\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":9,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:01.3025324\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.5511486\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":10,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:01.6773838\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":7,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.5668719\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":11,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:02.0463476\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":7,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.9176921\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":12,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a1c1-4d60-b4d9-510cf74ddec9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:02.4284184\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a1c1-4d60-b4d9-510cf74ddec9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":7,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:00.9288749\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":8,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:01.2902911\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":8,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:01.2765751\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"02002680-9847-49a4-ac1a-915e944c37f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:04:01.6673183\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9847-49a4-ac1a-915e944c37f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.RemoveParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.RemoveParticipantSucceeded\"},\"time\":\"2025-05-20T10:04:01.6673183\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":9,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-436e-49ec-ba32-387bc9994af1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b38b4c96-a512-4aa6-8b81-0834a95d65c7\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:01.6844859\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-436e-49ec-ba32-387bc9994af1\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:58.0673723\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-575b-4fad-af5c-30ab69bddd5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:58.0673723\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-575b-4fad-af5c-30ab69bddd5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:21:58.1421928\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:21:58.1344471\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:22:01.2778968\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.5607977\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.AddParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.AddParticipantSucceeded\"},\"time\":\"2025-05-22T17:22:01.5311025\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.6714178\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.5311025\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":7,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.7982562\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-575b-4fad-af5c-30ab69bddd5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.5311025\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":8,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.9420351\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.7184212\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":9,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.0758266\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-575b-4fad-af5c-30ab69bddd5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.7340451\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":10,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.195284\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-575b-4fad-af5c-30ab69bddd5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.8768147\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":11,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-9906-4039-afd3-7f1360f9c66f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.3267703\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-9906-4039-afd3-7f1360f9c66f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:01.908572\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":7,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.066685\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":8,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-575b-4fad-af5c-30ab69bddd5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.0752697\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":8,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.2077462\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"1a006780-575b-4fad-af5c-30ab69bddd5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:22:02.1929357\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-575b-4fad-af5c-30ab69bddd5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.RemoveParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.RemoveParticipantSucceeded\"},\"time\":\"2025-05-22T17:22:02.1947021\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":9,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.4048331\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":10,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.5823711\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":11,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-35c8-4991-b962-d46cef4d77e3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f7856863-d80c-4ed7-90c3-83cd125a67bf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:02.6901131\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-35c8-4991-b962-d46cef4d77e3\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenHangupAutomatedTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenHangupAutomatedTest.json index 573bec0ac0df..20e95b1bf545 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenHangupAutomatedTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndAnswerThenHangupAutomatedTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"434344e0-eddc-4e43-931a-6ee95df03e2b\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6bc6-482c-bffb-8bfb25b9f8ff\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-6bc6-482c-bffb-8bfb25b9f8ff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"434344e0-eddc-4e43-931a-6ee95df03e2b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:41.6927177\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6bc6-482c-bffb-8bfb25b9f8ff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-02a9-41d6-84c9-fa900bdba843\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-02a9-41d6-84c9-fa900bdba843\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"434344e0-eddc-4e43-931a-6ee95df03e2b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:41.6927177\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-02a9-41d6-84c9-fa900bdba843\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6bc6-482c-bffb-8bfb25b9f8ff\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-6bc6-482c-bffb-8bfb25b9f8ff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"434344e0-eddc-4e43-931a-6ee95df03e2b\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:41.7771232\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6bc6-482c-bffb-8bfb25b9f8ff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-02a9-41d6-84c9-fa900bdba843\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-02a9-41d6-84c9-fa900bdba843\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"434344e0-eddc-4e43-931a-6ee95df03e2b\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:41.8244268\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-02a9-41d6-84c9-fa900bdba843\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6bc6-482c-bffb-8bfb25b9f8ff\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"02002680-6bc6-482c-bffb-8bfb25b9f8ff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"434344e0-eddc-4e43-931a-6ee95df03e2b\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:03:44.626846\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6bc6-482c-bffb-8bfb25b9f8ff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-02a9-41d6-84c9-fa900bdba843\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"02002680-02a9-41d6-84c9-fa900bdba843\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"434344e0-eddc-4e43-931a-6ee95df03e2b\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:03:44.6427355\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-02a9-41d6-84c9-fa900bdba843\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"81b1be24-ec48-4d2e-93d7-8b5df3e1d777\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-3b9b-43a1-833a-3618ae420493\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-3b9b-43a1-833a-3618ae420493\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"81b1be24-ec48-4d2e-93d7-8b5df3e1d777\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:46.7892968\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-3b9b-43a1-833a-3618ae420493\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-681b-42d0-a76d-cb32307cb2a1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-681b-42d0-a76d-cb32307cb2a1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"81b1be24-ec48-4d2e-93d7-8b5df3e1d777\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:46.7887376\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-681b-42d0-a76d-cb32307cb2a1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-681b-42d0-a76d-cb32307cb2a1\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-681b-42d0-a76d-cb32307cb2a1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"81b1be24-ec48-4d2e-93d7-8b5df3e1d777\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:21:46.9184727\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-681b-42d0-a76d-cb32307cb2a1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-3b9b-43a1-833a-3618ae420493\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-3b9b-43a1-833a-3618ae420493\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"81b1be24-ec48-4d2e-93d7-8b5df3e1d777\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:21:46.9316196\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-3b9b-43a1-833a-3618ae420493\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-681b-42d0-a76d-cb32307cb2a1\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"1a006780-681b-42d0-a76d-cb32307cb2a1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"81b1be24-ec48-4d2e-93d7-8b5df3e1d777\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:21:47.6211831\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-681b-42d0-a76d-cb32307cb2a1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-3b9b-43a1-833a-3618ae420493\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"1a006780-3b9b-43a1-833a-3618ae420493\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"81b1be24-ec48-4d2e-93d7-8b5df3e1d777\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:21:47.6368322\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-3b9b-43a1-833a-3618ae420493\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndConnectCallTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndConnectCallTest.json index e61640539397..d2a78ce6af07 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndConnectCallTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndConnectCallTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-035d-484a-89af-be94bc479335\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-035d-484a-89af-be94bc479335\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:25.9744848\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-035d-484a-89af-be94bc479335\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-c4df-4d04-b232-7c7b601c9b75\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-c4df-4d04-b232-7c7b601c9b75\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:26.0095892\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-c4df-4d04-b232-7c7b601c9b75\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-035d-484a-89af-be94bc479335\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-035d-484a-89af-be94bc479335\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:25.8496723\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-035d-484a-89af-be94bc479335\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-c4df-4d04-b232-7c7b601c9b75\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-c4df-4d04-b232-7c7b601c9b75\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:25.8496723\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-c4df-4d04-b232-7c7b601c9b75\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":2,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:29.9467802\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:03:29.9624391\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:03:30.3252383\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"02002680-03ae-44f9-89fe-10cc5c3e25f9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:03:31.0188111\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-03ae-44f9-89fe-10cc5c3e25f9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-035d-484a-89af-be94bc479335\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"02002680-035d-484a-89af-be94bc479335\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:03:31.0499688\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-035d-484a-89af-be94bc479335\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-c4df-4d04-b232-7c7b601c9b75\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"02002680-c4df-4d04-b232-7c7b601c9b75\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"26c0c98c-24c9-428e-ad28-b074c90c65c5\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:03:31.0641605\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-c4df-4d04-b232-7c7b601c9b75\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-1ff1-4762-9717-38be00d277a3\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-1ff1-4762-9717-38be00d277a3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:31.7195783\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-1ff1-4762-9717-38be00d277a3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-11da-4e8e-a87f-a96441328e49\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-11da-4e8e-a87f-a96441328e49\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:31.7195783\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-11da-4e8e-a87f-a96441328e49\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-11da-4e8e-a87f-a96441328e49\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-11da-4e8e-a87f-a96441328e49\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:21:31.8613887\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-11da-4e8e-a87f-a96441328e49\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-1ff1-4762-9717-38be00d277a3\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-1ff1-4762-9717-38be00d277a3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:21:31.8613887\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-1ff1-4762-9717-38be00d277a3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-bdd7-4846-b43f-1f068a9141e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:21:34.0509772\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":2,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-bdd7-4846-b43f-1f068a9141e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:34.048607\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-bdd7-4846-b43f-1f068a9141e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:21:34.206797\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"1a006780-bdd7-4846-b43f-1f068a9141e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:21:34.705931\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-bdd7-4846-b43f-1f068a9141e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-11da-4e8e-a87f-a96441328e49\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"1a006780-11da-4e8e-a87f-a96441328e49\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:21:34.719968\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-11da-4e8e-a87f-a96441328e49\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-1ff1-4762-9717-38be00d277a3\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"1a006780-1ff1-4762-9717-38be00d277a3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00374108-763d-43af-bb9b-4ef4faf15504\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:21:34.7739593\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-1ff1-4762-9717-38be00d277a3\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndMediaStreamingTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndMediaStreamingTest.json index a681ced1316e..432fbda6ad4e 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndMediaStreamingTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndMediaStreamingTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"3bda7806-6cd7-4842-be33-7099b095c553\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-23e0-4d34-9386-2cea4dbc8c7f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"08002680-23e0-4d34-9386-2cea4dbc8c7f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3bda7806-6cd7-4842-be33-7099b095c553\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:11:06.3623237\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-23e0-4d34-9386-2cea4dbc8c7f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"08002680-ef18-4820-8b82-1bb48f622851\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3bda7806-6cd7-4842-be33-7099b095c553\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:11:06.3623237\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-23e0-4d34-9386-2cea4dbc8c7f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"08002680-23e0-4d34-9386-2cea4dbc8c7f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3bda7806-6cd7-4842-be33-7099b095c553\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:11:06.471634\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-23e0-4d34-9386-2cea4dbc8c7f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"08002680-ef18-4820-8b82-1bb48f622851\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3bda7806-6cd7-4842-be33-7099b095c553\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:11:06.503044\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\",\"type\":\"Microsoft.Communication.MediaStreamingStarted\",\"data\":{\"mediaStreamingUpdate\":{\"contentType\":\"Audio\",\"mediaStreamingStatus\":\"mediaStreamingStarted\",\"mediaStreamingStatusDetails\":\"subscriptionStarted\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"08002680-ef18-4820-8b82-1bb48f622851\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3bda7806-6cd7-4842-be33-7099b095c553\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStarted\"},\"time\":\"2025-05-20T10:11:10.1632668\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\",\"type\":\"Microsoft.Communication.MediaStreamingStopped\",\"data\":{\"mediaStreamingUpdate\":{\"contentType\":\"Audio\",\"mediaStreamingStatus\":\"mediaStreamingStopped\",\"mediaStreamingStatusDetails\":\"subscriptionStopped\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"08002680-ef18-4820-8b82-1bb48f622851\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3bda7806-6cd7-4842-be33-7099b095c553\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStopped\"},\"time\":\"2025-05-20T10:11:11.3536489\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-ef18-4820-8b82-1bb48f622851\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"f6c9ed04-25db-4738-b9c7-5b40c6fc8949\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f6c9ed04-25db-4738-b9c7-5b40c6fc8949\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:35.1961983\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-aeb9-4dd7-a2af-4b194826995f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-aeb9-4dd7-a2af-4b194826995f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f6c9ed04-25db-4738-b9c7-5b40c6fc8949\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:35.1961983\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-aeb9-4dd7-a2af-4b194826995f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-aeb9-4dd7-a2af-4b194826995f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-aeb9-4dd7-a2af-4b194826995f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f6c9ed04-25db-4738-b9c7-5b40c6fc8949\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:35.4315714\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-aeb9-4dd7-a2af-4b194826995f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f6c9ed04-25db-4738-b9c7-5b40c6fc8949\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:35.4835173\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"type\":\"Microsoft.Communication.MediaStreamingStarted\",\"data\":{\"mediaStreamingUpdate\":{\"contentType\":\"Audio\",\"mediaStreamingStatus\":\"mediaStreamingStarted\",\"mediaStreamingStatusDetails\":\"subscriptionStarted\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f6c9ed04-25db-4738-b9c7-5b40c6fc8949\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStarted\"},\"time\":\"2025-05-22T17:24:36.3165714\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"type\":\"Microsoft.Communication.MediaStreamingStopped\",\"data\":{\"mediaStreamingUpdate\":{\"contentType\":\"Audio\",\"mediaStreamingStatus\":\"mediaStreamingStopped\",\"mediaStreamingStatusDetails\":\"subscriptionStopped\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-3d0c-447a-aa4f-60ba0bda8a9f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"f6c9ed04-25db-4738-b9c7-5b40c6fc8949\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStopped\"},\"time\":\"2025-05-22T17:24:37.430735\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-3d0c-447a-aa4f-60ba0bda8a9f\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndRejectAutomatedTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndRejectAutomatedTest.json index 0c9476b54311..c57a21df5c1c 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndRejectAutomatedTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndRejectAutomatedTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"7820b15c-1d71-4110-990e-a24da86c5312\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a5ee-4f80-bdf2-5c33970445fb\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"02002680-a5ee-4f80-bdf2-5c33970445fb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7820b15c-1d71-4110-990e-a24da86c5312\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-20T10:03:14.7800138\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a5ee-4f80-bdf2-5c33970445fb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a5ee-4f80-bdf2-5c33970445fb\",\"type\":\"Microsoft.Communication.CreateCallFailed\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"02002680-a5ee-4f80-bdf2-5c33970445fb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7820b15c-1d71-4110-990e-a24da86c5312\",\"publicEventType\":\"Microsoft.Communication.CreateCallFailed\"},\"time\":\"2025-05-20T10:03:14.7800138\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a5ee-4f80-bdf2-5c33970445fb\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"af5b1dd8-13ec-4463-93e2-bce0837ffa1e\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-7c22-45f7-9657-d45124ee0175\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"1a006780-7c22-45f7-9657-d45124ee0175\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"af5b1dd8-13ec-4463-93e2-bce0837ffa1e\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-22T17:21:21.6106687\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-7c22-45f7-9657-d45124ee0175\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-7c22-45f7-9657-d45124ee0175\",\"type\":\"Microsoft.Communication.CreateCallFailed\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"1a006780-7c22-45f7-9657-d45124ee0175\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"af5b1dd8-13ec-4463-93e2-bce0837ffa1e\",\"publicEventType\":\"Microsoft.Communication.CreateCallFailed\"},\"time\":\"2025-05-22T17:21:21.6106687\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-7c22-45f7-9657-d45124ee0175\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndTranscriptionTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndTranscriptionTest.json index d7648e28b2cd..5f19a3edf789 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndTranscriptionTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/createVOIPCallAndTranscriptionTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"0bcb8f49-729b-4b9b-a8fa-f4468e770256\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6b4c-45cc-bc30-c8d58aa6f95b\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-6b4c-45cc-bc30-c8d58aa6f95b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0bcb8f49-729b-4b9b-a8fa-f4468e770256\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:06.3398932\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6b4c-45cc-bc30-c8d58aa6f95b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-c6b8-4691-be54-972b63fb77dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0bcb8f49-729b-4b9b-a8fa-f4468e770256\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:08:06.3398932\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6b4c-45cc-bc30-c8d58aa6f95b\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-6b4c-45cc-bc30-c8d58aa6f95b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0bcb8f49-729b-4b9b-a8fa-f4468e770256\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:08:06.417647\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6b4c-45cc-bc30-c8d58aa6f95b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-c6b8-4691-be54-972b63fb77dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0bcb8f49-729b-4b9b-a8fa-f4468e770256\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:08:06.4403958\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\",\"type\":\"Microsoft.Communication.TranscriptionStarted\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStarted\",\"transcriptionStatusDetails\":\"subscriptionStarted\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-c6b8-4691-be54-972b63fb77dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0bcb8f49-729b-4b9b-a8fa-f4468e770256\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStarted\"},\"time\":\"2025-05-20T10:08:10.4255642\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\",\"type\":\"Microsoft.Communication.TranscriptionStopped\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStopped\",\"transcriptionStatusDetails\":\"subscriptionStopped\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-c6b8-4691-be54-972b63fb77dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0bcb8f49-729b-4b9b-a8fa-f4468e770256\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStopped\"},\"time\":\"2025-05-20T10:08:13.5321178\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-c6b8-4691-be54-972b63fb77dd\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"53242855-b640-472f-8821-ef29bc8112ad\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"53242855-b640-472f-8821-ef29bc8112ad\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:05.0799718\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-fcf9-444a-9ad7-c3de845c0517\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-fcf9-444a-9ad7-c3de845c0517\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"53242855-b640-472f-8821-ef29bc8112ad\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:25:05.0799718\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-fcf9-444a-9ad7-c3de845c0517\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-fcf9-444a-9ad7-c3de845c0517\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-fcf9-444a-9ad7-c3de845c0517\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"53242855-b640-472f-8821-ef29bc8112ad\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:25:05.1960476\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-fcf9-444a-9ad7-c3de845c0517\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"53242855-b640-472f-8821-ef29bc8112ad\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:25:05.2050724\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"type\":\"Microsoft.Communication.TranscriptionStarted\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStarted\",\"transcriptionStatusDetails\":\"subscriptionStarted\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"53242855-b640-472f-8821-ef29bc8112ad\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStarted\"},\"time\":\"2025-05-22T17:25:06.0517101\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"type\":\"Microsoft.Communication.TranscriptionStopped\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStopped\",\"transcriptionStatusDetails\":\"subscriptionStopped\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-2f32-4a23-8a56-3a6719bfdbbb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"53242855-b640-472f-8821-ef29bc8112ad\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStopped\"},\"time\":\"2025-05-22T17:25:09.2506455\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2f32-4a23-8a56-3a6719bfdbbb\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/dtmfActionsInACallAutomatedTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/dtmfActionsInACallAutomatedTest.json index 043b780ab255..a1eea111b989 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/dtmfActionsInACallAutomatedTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/dtmfActionsInACallAutomatedTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"phoneNumber\",\"rawId\":\"REDACTED\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"from\":{\"kind\":\"phoneNumber\",\"rawId\":\"REDACTED\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"b440a86e-b656-4462-a0ee-c26b03e4ff1d\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"phoneNumber\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-5648-4066-903c-3dee1151f6ad\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9e2dc1a7-deb8-4fbe-bf90-582769169021\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:39.1653916\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-35ae-4de4-a9f4-a58c9110a3af\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-35ae-4de4-a9f4-a58c9110a3af\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b440a86e-b656-4462-a0ee-c26b03e4ff1d\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:05:39.3087402\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-35ae-4de4-a9f4-a58c9110a3af\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-5648-4066-903c-3dee1151f6ad\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9e2dc1a7-deb8-4fbe-bf90-582769169021\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:05:39.4007799\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-35ae-4de4-a9f4-a58c9110a3af\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"phoneNumber\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-35ae-4de4-a9f4-a58c9110a3af\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b440a86e-b656-4462-a0ee-c26b03e4ff1d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:40.0807007\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-35ae-4de4-a9f4-a58c9110a3af\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\",\"type\":\"Microsoft.Communication.SendDtmfTonesCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-5648-4066-903c-3dee1151f6ad\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9e2dc1a7-deb8-4fbe-bf90-582769169021\",\"publicEventType\":\"Microsoft.Communication.SendDtmfTonesCompleted\"},\"time\":\"2025-05-20T10:05:43.8084628\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\",\"type\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"02002680-5648-4066-903c-3dee1151f6ad\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9e2dc1a7-deb8-4fbe-bf90-582769169021\",\"publicEventType\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\"},\"time\":\"2025-05-20T10:05:44.5129324\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5648-4066-903c-3dee1151f6ad\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"phoneNumber\",\"rawId\":\"REDACTED\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"from\":{\"kind\":\"phoneNumber\",\"rawId\":\"REDACTED\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"8d8154c9-9280-41f4-80f3-97acbd91f176\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-75c1-4479-bec7-54f64e165a83\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-75c1-4479-bec7-54f64e165a83\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8d8154c9-9280-41f4-80f3-97acbd91f176\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:21.3976351\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-75c1-4479-bec7-54f64e165a83\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-75c1-4479-bec7-54f64e165a83\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"phoneNumber\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-75c1-4479-bec7-54f64e165a83\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8d8154c9-9280-41f4-80f3-97acbd91f176\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:21.4126607\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-75c1-4479-bec7-54f64e165a83\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"phoneNumber\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"07d143ba-2a1d-4f27-93ab-aff299f9be6c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:21.5432597\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"07d143ba-2a1d-4f27-93ab-aff299f9be6c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:21.5553356\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"type\":\"Microsoft.Communication.SendDtmfTonesCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"07d143ba-2a1d-4f27-93ab-aff299f9be6c\",\"publicEventType\":\"Microsoft.Communication.SendDtmfTonesCompleted\"},\"time\":\"2025-05-22T17:23:25.244702\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"type\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"1a006780-d0cb-48d9-ab5d-fefef2a28597\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"07d143ba-2a1d-4f27-93ab-aff299f9be6c\",\"publicEventType\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\"},\"time\":\"2025-05-22T17:23:25.797572\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d0cb-48d9-ab5d-fefef2a28597\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/holdUnholdParticipantInACallTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/holdUnholdParticipantInACallTest.json index 5b72358b29e4..a4d86dd8de2e 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/holdUnholdParticipantInACallTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/holdUnholdParticipantInACallTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9a71-490a-a0cc-f9a62206ab09\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:07:46.4795264\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-9a71-490a-a0cc-f9a62206ab09\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:07:46.5291562\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-5880-459e-a8a8-94a087e398b9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:07:46.7381914\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-5880-459e-a8a8-94a087e398b9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:07:47.1041792\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9a71-490a-a0cc-f9a62206ab09\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:07:50.2644312\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-5880-459e-a8a8-94a087e398b9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:07:50.2644312\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-9a71-490a-a0cc-f9a62206ab09\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:07:53.8260718\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-9a71-490a-a0cc-f9a62206ab09\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-5880-459e-a8a8-94a087e398b9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a6cff5c7-e0c3-4a3e-8b2a-5b318a83163e\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:07:53.8882761\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-5880-459e-a8a8-94a087e398b9\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-f752-482f-bf95-d14be6abdaa7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:45.0698202\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-2c78-4758-b511-6c40fc7f9703\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:45.1010006\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-f752-482f-bf95-d14be6abdaa7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:45.244163\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-2c78-4758-b511-6c40fc7f9703\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:45.3230706\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-2c78-4758-b511-6c40fc7f9703\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:47.6889118\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-f752-482f-bf95-d14be6abdaa7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:47.6889118\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-f752-482f-bf95-d14be6abdaa7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:51.1364777\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-f752-482f-bf95-d14be6abdaa7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-2c78-4758-b511-6c40fc7f9703\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c74d24d9-ae35-4aa8-b28c-8cb5ae0d1391\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:51.1364777\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-2c78-4758-b511-6c40fc7f9703\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/playMediaInACallAutomatedTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/playMediaInACallAutomatedTest.json index d63cbd487c0a..5b916e238a07 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/playMediaInACallAutomatedTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/playMediaInACallAutomatedTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"9434209e-4a3a-42ee-a6b9-1088d3a6eeb5\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-2443-49bc-a400-61456bdaa77f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-2443-49bc-a400-61456bdaa77f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9434209e-4a3a-42ee-a6b9-1088d3a6eeb5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:56.8320795\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-2443-49bc-a400-61456bdaa77f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-54e3-48b6-a5c0-30b87fba894f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9434209e-4a3a-42ee-a6b9-1088d3a6eeb5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:56.8320795\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-2443-49bc-a400-61456bdaa77f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-2443-49bc-a400-61456bdaa77f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9434209e-4a3a-42ee-a6b9-1088d3a6eeb5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:06:56.9750777\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-2443-49bc-a400-61456bdaa77f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-54e3-48b6-a5c0-30b87fba894f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9434209e-4a3a-42ee-a6b9-1088d3a6eeb5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:06:57.0377392\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-54e3-48b6-a5c0-30b87fba894f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9434209e-4a3a-42ee-a6b9-1088d3a6eeb5\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-20T10:07:00.0938396\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-54e3-48b6-a5c0-30b87fba894f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9434209e-4a3a-42ee-a6b9-1088d3a6eeb5\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-20T10:07:04.3266892\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-54e3-48b6-a5c0-30b87fba894f\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"e81c8631-cd04-4135-980b-428c24bc1236\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-dbe0-420b-97d7-9473a47cdbff\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-dbe0-420b-97d7-9473a47cdbff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e81c8631-cd04-4135-980b-428c24bc1236\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:21.3886685\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-dbe0-420b-97d7-9473a47cdbff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-b73a-4f46-a07a-3d073a24e425\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e81c8631-cd04-4135-980b-428c24bc1236\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:21.3863257\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-dbe0-420b-97d7-9473a47cdbff\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-dbe0-420b-97d7-9473a47cdbff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e81c8631-cd04-4135-980b-428c24bc1236\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:21.5289108\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-dbe0-420b-97d7-9473a47cdbff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-b73a-4f46-a07a-3d073a24e425\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e81c8631-cd04-4135-980b-428c24bc1236\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:21.5456131\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-b73a-4f46-a07a-3d073a24e425\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e81c8631-cd04-4135-980b-428c24bc1236\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-22T17:24:22.5551306\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-b73a-4f46-a07a-3d073a24e425\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e81c8631-cd04-4135-980b-428c24bc1236\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-22T17:24:26.7813572\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b73a-4f46-a07a-3d073a24e425\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaAllTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaAllTest.json index bb96762abe07..93897b9647d1 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaAllTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaAllTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"9b0ee775-1f15-40ab-8103-fcc07cf735e5\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-08db-460d-a825-002681bb3f59\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-08db-460d-a825-002681bb3f59\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9b0ee775-1f15-40ab-8103-fcc07cf735e5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:54.0840954\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-08db-460d-a825-002681bb3f59\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-a774-44bd-a732-888ceb55871f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9b0ee775-1f15-40ab-8103-fcc07cf735e5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:54.0847103\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-08db-460d-a825-002681bb3f59\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-08db-460d-a825-002681bb3f59\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9b0ee775-1f15-40ab-8103-fcc07cf735e5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:05:54.152793\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-08db-460d-a825-002681bb3f59\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-a774-44bd-a732-888ceb55871f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9b0ee775-1f15-40ab-8103-fcc07cf735e5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:05:54.1696406\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-a774-44bd-a732-888ceb55871f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9b0ee775-1f15-40ab-8103-fcc07cf735e5\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-20T10:05:57.7083739\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-a774-44bd-a732-888ceb55871f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9b0ee775-1f15-40ab-8103-fcc07cf735e5\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-20T10:06:04.1158282\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-a774-44bd-a732-888ceb55871f\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"31a0a9b9-e466-4595-b4a6-57ab5c82c25c\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-b1ac-4387-9679-70040fcc811f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"31a0a9b9-e466-4595-b4a6-57ab5c82c25c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:33.4553223\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-dafd-4618-b0bf-14faba5409fb\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-dafd-4618-b0bf-14faba5409fb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"31a0a9b9-e466-4595-b4a6-57ab5c82c25c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:33.4553223\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-dafd-4618-b0bf-14faba5409fb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-dafd-4618-b0bf-14faba5409fb\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-dafd-4618-b0bf-14faba5409fb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"31a0a9b9-e466-4595-b4a6-57ab5c82c25c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:33.5654103\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-dafd-4618-b0bf-14faba5409fb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-b1ac-4387-9679-70040fcc811f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"31a0a9b9-e466-4595-b4a6-57ab5c82c25c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:33.5654103\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-b1ac-4387-9679-70040fcc811f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"31a0a9b9-e466-4595-b4a6-57ab5c82c25c\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-22T17:23:34.9690086\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-b1ac-4387-9679-70040fcc811f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"31a0a9b9-e466-4595-b4a6-57ab5c82c25c\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-22T17:23:41.3916428\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-b1ac-4387-9679-70040fcc811f\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaTest.json index b4169b96c0f8..c62cd583bc00 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleCombinedSourcesWithPlayMediaTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-43be-4948-a136-3fa0fe0ef6c1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:16.6074806\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-258e-43c2-9c37-54ad340bc8c7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-258e-43c2-9c37-54ad340bc8c7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:16.6074806\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-258e-43c2-9c37-54ad340bc8c7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-43be-4948-a136-3fa0fe0ef6c1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:06:16.7115973\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-258e-43c2-9c37-54ad340bc8c7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-258e-43c2-9c37-54ad340bc8c7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:06:16.7115973\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-258e-43c2-9c37-54ad340bc8c7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-43be-4948-a136-3fa0fe0ef6c1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:19.4760028\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-258e-43c2-9c37-54ad340bc8c7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-258e-43c2-9c37-54ad340bc8c7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:19.47652\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-258e-43c2-9c37-54ad340bc8c7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-43be-4948-a136-3fa0fe0ef6c1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-20T10:06:20.4441923\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-43be-4948-a136-3fa0fe0ef6c1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-20T10:06:26.842228\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-43be-4948-a136-3fa0fe0ef6c1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dfdfda09-f747-4c9d-9198-2839a391a7f2\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:26.8730632\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-43be-4948-a136-3fa0fe0ef6c1\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-e806-4819-9e70-5215fe9e06cb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:48.8723491\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-dc7b-4ecc-8057-abf6b92e96cd\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-dc7b-4ecc-8057-abf6b92e96cd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:48.8723491\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-dc7b-4ecc-8057-abf6b92e96cd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-dc7b-4ecc-8057-abf6b92e96cd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-dc7b-4ecc-8057-abf6b92e96cd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:48.9979011\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-dc7b-4ecc-8057-abf6b92e96cd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-e806-4819-9e70-5215fe9e06cb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:49.0145951\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-e806-4819-9e70-5215fe9e06cb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:51.1697171\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-dc7b-4ecc-8057-abf6b92e96cd\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-dc7b-4ecc-8057-abf6b92e96cd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:51.1697171\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-dc7b-4ecc-8057-abf6b92e96cd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-e806-4819-9e70-5215fe9e06cb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-22T17:23:51.6888037\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-e806-4819-9e70-5215fe9e06cb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b438b634-a03c-4461-aa3f-0329719d6c5a\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-22T17:23:58.1852567\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-e806-4819-9e70-5215fe9e06cb\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaAllTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaAllTest.json index bc331ea6f088..e527b7985380 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaAllTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaAllTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"69552b92-9c2c-4834-9414-48c69823ca44\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-6f03-49ec-b029-ac5072be4303\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"69552b92-9c2c-4834-9414-48c69823ca44\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:14.3725764\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-b07a-4740-8ea3-d18de2c7dfa7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-b07a-4740-8ea3-d18de2c7dfa7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"69552b92-9c2c-4834-9414-48c69823ca44\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:14.3725764\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-b07a-4740-8ea3-d18de2c7dfa7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-b07a-4740-8ea3-d18de2c7dfa7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-b07a-4740-8ea3-d18de2c7dfa7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"69552b92-9c2c-4834-9414-48c69823ca44\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:05:14.454832\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-b07a-4740-8ea3-d18de2c7dfa7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-6f03-49ec-b029-ac5072be4303\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"69552b92-9c2c-4834-9414-48c69823ca44\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:05:14.4801053\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-6f03-49ec-b029-ac5072be4303\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"69552b92-9c2c-4834-9414-48c69823ca44\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-20T10:05:17.6450818\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-6f03-49ec-b029-ac5072be4303\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"69552b92-9c2c-4834-9414-48c69823ca44\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-20T10:05:26.1401236\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-6f03-49ec-b029-ac5072be4303\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"517286f6-33d6-414f-acc3-1e26bfeabe80\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-cd5b-4193-8d38-4904d233b3bf\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"517286f6-33d6-414f-acc3-1e26bfeabe80\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:03.1032789\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-468e-4de5-81d3-017d455b3f0b\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-468e-4de5-81d3-017d455b3f0b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"517286f6-33d6-414f-acc3-1e26bfeabe80\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:23:03.1032789\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-468e-4de5-81d3-017d455b3f0b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-cd5b-4193-8d38-4904d233b3bf\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"517286f6-33d6-414f-acc3-1e26bfeabe80\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:03.2134757\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-468e-4de5-81d3-017d455b3f0b\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-468e-4de5-81d3-017d455b3f0b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"517286f6-33d6-414f-acc3-1e26bfeabe80\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:23:03.1972523\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-468e-4de5-81d3-017d455b3f0b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-cd5b-4193-8d38-4904d233b3bf\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"517286f6-33d6-414f-acc3-1e26bfeabe80\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-22T17:23:04.2079282\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-cd5b-4193-8d38-4904d233b3bf\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"517286f6-33d6-414f-acc3-1e26bfeabe80\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-22T17:23:12.7169485\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-cd5b-4193-8d38-4904d233b3bf\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaTest.json index e1e0557d8478..38072b6fe043 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleFileSourcesWithPlayMediaTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-bdc5-4318-9ba8-26f7f10740a9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:32.0003496\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:32.0003496\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:04:32.0792708\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-bdc5-4318-9ba8-26f7f10740a9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:04:32.0997967\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-bdc5-4318-9ba8-26f7f10740a9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:36.5537165\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:36.5537165\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-bdc5-4318-9ba8-26f7f10740a9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-20T10:04:37.2928537\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-bdc5-4318-9ba8-26f7f10740a9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-20T10:04:45.8558804\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-bdc5-4318-9ba8-26f7f10740a9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:45.9037835\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-bdc5-4318-9ba8-26f7f10740a9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-17ff-46b0-b92e-cf4c2f6a463d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e054834b-4896-4ec6-85e2-200d8bd16c13\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:45.9037835\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-17ff-46b0-b92e-cf4c2f6a463d\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:25.6838009\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:25.6838009\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:22:25.7937174\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:22:25.7937174\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:28.5292621\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:28.5301502\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-22T17:22:29.6816417\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-22T17:22:38.2727579\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-d76d-4da1-a003-fa8f7d6f6af9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:38.327154\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d76d-4da1-a003-fa8f7d6f6af9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":6,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-0d69-4c4a-bbd9-1bf7df2bf259\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cf0ad90c-1c88-4545-99b4-ddd1a212f8b1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:38.3196037\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-0d69-4c4a-bbd9-1bf7df2bf259\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaAllTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaAllTest.json index 194b6f1523ca..f57b4d2b19f8 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaAllTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaAllTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-e745-4794-ac12-1588dfb99237\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:38.4198082\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-7d54-42c0-9b01-1105906c51dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:38.4198082\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-e745-4794-ac12-1588dfb99237\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:06:38.5363308\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-7d54-42c0-9b01-1105906c51dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:06:38.5212957\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-e745-4794-ac12-1588dfb99237\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:41.3350536\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-7d54-42c0-9b01-1105906c51dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:41.3350536\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-e745-4794-ac12-1588dfb99237\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-20T10:06:42.1144442\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-e745-4794-ac12-1588dfb99237\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-20T10:06:46.5162609\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-e745-4794-ac12-1588dfb99237\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-7d54-42c0-9b01-1105906c51dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6f6ebe11-3bd8-4e77-bee0-9043262ad203\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:06:46.5565499\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7d54-42c0-9b01-1105906c51dd\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:04.9186056\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:04.9186056\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:05.0124557\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:24:05.05924\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:07.4665933\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:07.4665933\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-22T17:24:07.908337\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-97e1-4f23-8dcd-b0c3446c633d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:12.4254605\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-97e1-4f23-8dcd-b0c3446c633d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:24:12.4254605\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-8e96-48a2-a220-7dc43f5d07f5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"3e66ccf1-4572-4cfc-b2fb-6235dace319b\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-22T17:24:12.3798603\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-8e96-48a2-a220-7dc43f5d07f5\"}]"] \ No newline at end of file diff --git a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaTest.json b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaTest.json index 4bb4ee7dfd24..228eb133a069 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaTest.json +++ b/sdk/communication/azure-communication-callautomation/src/test/resources/playMultipleTextSourcesWithPlayMediaTest.json @@ -1 +1 @@ -["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-7b28-4520-b387-1f59b3c1304d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:56.639687\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-115d-4771-828b-9f4405cdc393\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:04:56.639687\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-7b28-4520-b387-1f59b3c1304d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:04:56.7655227\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"02002680-115d-4771-828b-9f4405cdc393\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-20T10:04:56.7655227\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-7b28-4520-b387-1f59b3c1304d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:00.5643514\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":3,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-115d-4771-828b-9f4405cdc393\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:00.5643514\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-115d-4771-828b-9f4405cdc393\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-20T10:05:01.5654048\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"02002680-115d-4771-828b-9f4405cdc393\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-20T10:05:05.9342264\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-115d-4771-828b-9f4405cdc393\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"02002680-7b28-4520-b387-1f59b3c1304d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"43971767-d0ea-4c9b-b899-0b354bfe31ef\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-20T10:05:05.9657661\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/02002680-7b28-4520-b387-1f59b3c1304d\"}]"] \ No newline at end of file +["{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-6687-416d-91e2-bd5781623669\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:46.0283943\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-d689-4333-a63b-3b0e06e466e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:46.0283943\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-6687-416d-91e2-bd5781623669\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:22:46.1217393\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"1a006780-d689-4333-a63b-3b0e06e466e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-22T17:22:46.1373649\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-6687-416d-91e2-bd5781623669\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:48.7198313\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":true}],\"sequenceNumber\":4,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-d689-4333-a63b-3b0e06e466e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:48.7198313\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-d689-4333-a63b-3b0e06e466e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-22T17:22:49.2878472\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"1a006780-d689-4333-a63b-3b0e06e466e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-22T17:22:53.7898512\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-6687-416d-91e2-bd5781623669\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:53.8105115\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-6687-416d-91e2-bd5781623669\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":5,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"1a006780-d689-4333-a63b-3b0e06e466e7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8b92f293-ab46-49ab-b6fd-70be475f18dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-22T17:22:53.8105115\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/1a006780-d689-4333-a63b-3b0e06e466e7\"}]"] \ No newline at end of file