From e45bc4937436fc2cba0e8a2e7ce1a0c4d957a833 Mon Sep 17 00:00:00 2001 From: Pilli Vamshi Date: Fri, 9 May 2025 12:43:45 +0530 Subject: [PATCH] Resolved the build issues and Recorded the live tests. --- .../assets.json | 2 +- .../CallAutomationAsyncClient.java | 5 ---- .../models/AnswerCallOptions.java | 2 -- .../callautomation/models/CallInvite.java | 5 ++-- .../models/CreateCallOptions.java | 1 - .../models/CreateGroupCallOptions.java | 6 ++--- .../callautomation/models/SpeechResult.java | 5 ++-- .../TransferCallToParticipantOptions.java | 1 - .../CallAutomationClientUnitTests.java | 23 ------------------- .../CallMediaAsyncAutomatedLiveTests.java | 2 -- .../CallRecordingAutomatedLiveTests.java | 1 - .../createACSCallAndUnmixedAudioTest.json | 2 +- ...createACSCallUnmixedAudioAffinityTest.json | 2 +- ...articipantFinallyCancelAddParticipant.json | 2 +- ...FinallyRemoveParticipantAutomatedTest.json | 2 +- ...PCallAndAnswerThenHangupAutomatedTest.json | 2 +- .../createVOIPCallAndConnectCallTest.json | 2 +- .../createVOIPCallAndMediaStreamingTest.json | 2 +- .../createVOIPCallAndRejectAutomatedTest.json | 2 +- .../createVOIPCallAndTranscriptionTest.json | 2 +- .../dtmfActionsInACallAutomatedTest.json | 2 +- .../holdUnholdParticipantInACallTest.json | 2 +- .../playMediaInACallAutomatedTest.json | 2 +- ...leCombinedSourcesWithPlayMediaAllTest.json | 2 +- ...tipleCombinedSourcesWithPlayMediaTest.json | 2 +- ...ltipleFileSourcesWithPlayMediaAllTest.json | 2 +- ...yMultipleFileSourcesWithPlayMediaTest.json | 2 +- ...ltipleTextSourcesWithPlayMediaAllTest.json | 2 +- ...yMultipleTextSourcesWithPlayMediaTest.json | 2 +- 29 files changed, 25 insertions(+), 64 deletions(-) diff --git a/sdk/communication/azure-communication-callautomation/assets.json b/sdk/communication/azure-communication-callautomation/assets.json index 824ec12c4106..c9007af83818 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_9339e7fc0c" + "Tag": "java/communication/azure-communication-callautomation_80ad22db2d" } diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/CallAutomationAsyncClient.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/CallAutomationAsyncClient.java index 6725e3f3e487..2314d820c46c 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/CallAutomationAsyncClient.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/CallAutomationAsyncClient.java @@ -5,13 +5,11 @@ import com.azure.communication.callautomation.implementation.AzureCommunicationCallAutomationServiceImpl; import com.azure.communication.callautomation.implementation.CallConnectionsImpl; -import com.azure.communication.callautomation.implementation.CallDialogsImpl; import com.azure.communication.callautomation.implementation.CallMediasImpl; import com.azure.communication.callautomation.implementation.CallRecordingsImpl; import com.azure.communication.callautomation.implementation.accesshelpers.CallConnectionPropertiesConstructorProxy; import com.azure.communication.callautomation.implementation.converters.CommunicationIdentifierConverter; import com.azure.communication.callautomation.implementation.converters.CommunicationUserIdentifierConverter; -import com.azure.communication.callautomation.implementation.converters.MicrosoftTeamsAppIdentifierConverter; import com.azure.communication.callautomation.implementation.converters.PhoneNumberIdentifierConverter; import com.azure.communication.callautomation.implementation.models.AnswerCallRequestInternal; import com.azure.communication.callautomation.implementation.models.AudioFormatInternal; @@ -23,15 +21,12 @@ import com.azure.communication.callautomation.implementation.models.CommunicationUserIdentifierModel; import com.azure.communication.callautomation.implementation.models.ConnectRequestInternal; import com.azure.communication.callautomation.implementation.models.CreateCallRequestInternal; -import com.azure.communication.callautomation.implementation.models.CustomCallingContext; import com.azure.communication.callautomation.implementation.models.MediaStreamingAudioChannelTypeInternal; import com.azure.communication.callautomation.implementation.models.MediaStreamingContentTypeInternal; import com.azure.communication.callautomation.implementation.models.MediaStreamingOptionsInternal; -import com.azure.communication.callautomation.implementation.models.MediaStreamingTransportTypeInternal; import com.azure.communication.callautomation.implementation.models.RedirectCallRequestInternal; import com.azure.communication.callautomation.implementation.models.RejectCallRequestInternal; import com.azure.communication.callautomation.implementation.models.TranscriptionOptionsInternal; -import com.azure.communication.callautomation.implementation.models.TranscriptionTransportTypeInternal; import com.azure.communication.callautomation.implementation.models.WebSocketMediaStreamingOptionsInternal; import com.azure.communication.callautomation.implementation.models.WebSocketTranscriptionOptionsInternal; import com.azure.communication.callautomation.models.AnswerCallOptions; diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/AnswerCallOptions.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/AnswerCallOptions.java index 9a90a2e11b3e..e8ab5c0e92fe 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/AnswerCallOptions.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/AnswerCallOptions.java @@ -3,8 +3,6 @@ package com.azure.communication.callautomation.models; -import java.util.HashMap; - import com.azure.core.annotation.Fluent; /** diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CallInvite.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CallInvite.java index 64bb59af5655..2569b4468f03 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CallInvite.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CallInvite.java @@ -4,15 +4,14 @@ package com.azure.communication.callautomation.models; +import java.util.HashMap; + import com.azure.communication.common.CommunicationIdentifier; import com.azure.communication.common.CommunicationUserIdentifier; -import com.azure.communication.common.MicrosoftTeamsAppIdentifier; import com.azure.communication.common.MicrosoftTeamsUserIdentifier; import com.azure.communication.common.PhoneNumberIdentifier; import com.azure.core.annotation.Fluent; -import java.util.HashMap; - /** * Call invite details. */ diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateCallOptions.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateCallOptions.java index 27e4f245ed3d..fe0f9e8ea87d 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateCallOptions.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateCallOptions.java @@ -3,7 +3,6 @@ package com.azure.communication.callautomation.models; -import com.azure.communication.common.MicrosoftTeamsAppIdentifier; import com.azure.core.annotation.Fluent; /** diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateGroupCallOptions.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateGroupCallOptions.java index cae84bf0d483..39109119a4c6 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateGroupCallOptions.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/CreateGroupCallOptions.java @@ -3,14 +3,12 @@ package com.azure.communication.callautomation.models; +import java.util.List; + import com.azure.communication.common.CommunicationIdentifier; -import com.azure.communication.common.MicrosoftTeamsAppIdentifier; import com.azure.communication.common.PhoneNumberIdentifier; import com.azure.core.annotation.Fluent; -import java.util.HashMap; -import java.util.List; - /** * The options for creating a group call. */ diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/SpeechResult.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/SpeechResult.java index dc909569d6cd..900865b471bd 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/SpeechResult.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/SpeechResult.java @@ -3,14 +3,13 @@ package com.azure.communication.callautomation.models; -import com.azure.core.annotation.Fluent; +import java.io.IOException; + import com.azure.core.annotation.Immutable; import com.azure.json.JsonReader; import com.azure.json.JsonToken; import com.azure.json.JsonWriter; -import java.io.IOException; - /** The continuous speech recognition result. */ @Immutable public final class SpeechResult extends RecognizeResult { diff --git a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TransferCallToParticipantOptions.java b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TransferCallToParticipantOptions.java index 776b90b89c6b..26237f3482e6 100644 --- a/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TransferCallToParticipantOptions.java +++ b/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models/TransferCallToParticipantOptions.java @@ -7,7 +7,6 @@ import com.azure.communication.common.CommunicationIdentifier; import com.azure.communication.common.CommunicationUserIdentifier; -import com.azure.communication.common.MicrosoftTeamsAppIdentifier; import com.azure.communication.common.MicrosoftTeamsUserIdentifier; import com.azure.communication.common.PhoneNumberIdentifier; import com.azure.core.annotation.Fluent; diff --git a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationClientUnitTests.java b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationClientUnitTests.java index 48f02f12d437..138902f8c85b 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationClientUnitTests.java +++ b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallAutomationClientUnitTests.java @@ -7,15 +7,12 @@ import com.azure.communication.callautomation.models.AnswerCallResult; import com.azure.communication.callautomation.models.CallInvite; import com.azure.communication.callautomation.models.CallRejectReason; -import com.azure.communication.callautomation.models.CreateCallOptions; import com.azure.communication.callautomation.models.CreateGroupCallOptions; import com.azure.communication.callautomation.models.CreateCallResult; import com.azure.communication.callautomation.models.RedirectCallOptions; import com.azure.communication.callautomation.models.RejectCallOptions; import com.azure.communication.common.CommunicationIdentifier; import com.azure.communication.common.CommunicationUserIdentifier; -import com.azure.communication.common.MicrosoftTeamsAppIdentifier; -import com.azure.communication.common.PhoneNumberIdentifier; import com.azure.core.http.rest.Response; import com.azure.core.util.Context; import org.junit.jupiter.api.Test; @@ -66,26 +63,6 @@ public void createCallWithResponse() { assertNotNull(createCallResult.getValue()); } - @Test - public void createTeamsAppCallWithResponse() { - MicrosoftTeamsAppIdentifier caller = new MicrosoftTeamsAppIdentifier(TEAMS_APP_CALL_CALLER_ID); - - CallAutomationClient callAutomationClient = getCallAutomationClient(new ArrayList<>(Collections - .singletonList(new SimpleEntry<>(generateTeamsAppCallProperties(CALL_CONNECTION_ID, CALL_SERVER_CALL_ID, - CALL_TARGET_ID, CALL_CONNECTION_STATE, CALL_CALLBACK_URL, TEAMS_APP_CALL_CALLER_ID), 201)))); - PhoneNumberIdentifier target = new PhoneNumberIdentifier(CALL_TARGET_ID); - - Response createCallResult = callAutomationClient.createCallWithResponse( - new CreateCallOptions(new CallInvite(target, null), CALL_CALLBACK_URL).setTeamsAppSource(caller), - Context.NONE); - - assertNotNull(createCallResult); - assertEquals(201, createCallResult.getStatusCode()); - assertEquals(TEAMS_APP_CALL_CALLER_ID, - ((MicrosoftTeamsAppIdentifier) (createCallResult.getValue().getCallConnectionProperties().getSource())) - .getAppId()); - } - @Test public void answerCall() { CallAutomationClient callAutomationClient = getCallAutomationClient( 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 6b8bb85c7a80..7476ad4af5c5 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 @@ -14,7 +14,6 @@ import com.azure.communication.callautomation.models.events.CallConnected; import com.azure.communication.callautomation.models.events.ContinuousDtmfRecognitionStopped; import com.azure.communication.callautomation.models.events.PlayCompleted; -import com.azure.communication.callautomation.models.events.PlayStarted; import com.azure.communication.callautomation.models.events.SendDtmfTonesCompleted; import com.azure.communication.common.CommunicationIdentifier; import com.azure.communication.common.CommunicationUserIdentifier; @@ -28,7 +27,6 @@ import com.azure.communication.callautomation.models.MediaStreamingContent; import com.azure.communication.callautomation.models.MediaStreamingOptions; import com.azure.communication.callautomation.models.MediaStreamingTransport; -import com.azure.communication.callautomation.models.PlayOptions; import com.azure.communication.callautomation.models.TranscriptionOptions; import com.azure.communication.callautomation.models.StartMediaStreamingOptions; import com.azure.communication.callautomation.models.StopMediaStreamingOptions; diff --git a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallRecordingAutomatedLiveTests.java b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallRecordingAutomatedLiveTests.java index 79864ecb45f9..7dd21d7fb41b 100644 --- a/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallRecordingAutomatedLiveTests.java +++ b/sdk/communication/azure-communication-callautomation/src/test/java/com/azure/communication/callautomation/CallRecordingAutomatedLiveTests.java @@ -21,7 +21,6 @@ import com.azure.communication.common.CommunicationUserIdentifier; import com.azure.communication.identity.CommunicationIdentityClient; import com.azure.core.http.HttpClient; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; 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 c619abbdc48e..e155168a4440 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\":\"73078c8e-47d1-4614-9a2e-a0fb0314a2aa\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73078c8e-47d1-4614-9a2e-a0fb0314a2aa\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:41.6073482\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73078c8e-47d1-4614-9a2e-a0fb0314a2aa\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:11:41.6546675\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73078c8e-47d1-4614-9a2e-a0fb0314a2aa\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:48.0723857\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73078c8e-47d1-4614-9a2e-a0fb0314a2aa\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:48.4456209\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"00002680-f7c7-45e9-b142-a3a205f4a8dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73078c8e-47d1-4614-9a2e-a0fb0314a2aa\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:11:48.496922\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-f7c7-45e9-b142-a3a205f4a8dd\"}]"] \ 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\":\"57e2d3b3-1940-4bc1-81ba-ac726dfe09c5\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\",\"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\":\"05002380-119c-41cb-84f1-da4c256fb4bb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57e2d3b3-1940-4bc1-81ba-ac726dfe09c5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:27:14.2881205\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-119c-41cb-84f1-da4c256fb4bb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57e2d3b3-1940-4bc1-81ba-ac726dfe09c5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:27:14.4402639\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\",\"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\":\"05002380-119c-41cb-84f1-da4c256fb4bb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57e2d3b3-1940-4bc1-81ba-ac726dfe09c5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:27:18.3962831\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\",\"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\":\"05002380-119c-41cb-84f1-da4c256fb4bb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57e2d3b3-1940-4bc1-81ba-ac726dfe09c5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:27:18.7471729\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"05002380-119c-41cb-84f1-da4c256fb4bb\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57e2d3b3-1940-4bc1-81ba-ac726dfe09c5\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:27:18.800256\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-119c-41cb-84f1-da4c256fb4bb\"}]"] \ 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 7ed0bb528f8a..165ed693b77c 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\":\"7d5756d0-129e-4f56-83ef-52bb83957f86\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-367e-4e96-a974-0f74dc9b9665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7d5756d0-129e-4f56-83ef-52bb83957f86\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:57.8684639\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-367e-4e96-a974-0f74dc9b9665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7d5756d0-129e-4f56-83ef-52bb83957f86\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:11:57.8684639\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-367e-4e96-a974-0f74dc9b9665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7d5756d0-129e-4f56-83ef-52bb83957f86\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:12:01.858633\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-367e-4e96-a974-0f74dc9b9665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7d5756d0-129e-4f56-83ef-52bb83957f86\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:12:02.3131944\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"00002680-367e-4e96-a974-0f74dc9b9665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7d5756d0-129e-4f56-83ef-52bb83957f86\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:12:02.5478732\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-367e-4e96-a974-0f74dc9b9665\"}]"] \ 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\":\"1b83f055-61ec-4edb-b915-9f951219e688\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\",\"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\":\"05002380-4c53-4d63-a814-45d68dc2d1d7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"1b83f055-61ec-4edb-b915-9f951219e688\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:27:26.8295566\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-4c53-4d63-a814-45d68dc2d1d7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"1b83f055-61ec-4edb-b915-9f951219e688\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:27:26.9873876\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\",\"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\":\"05002380-4c53-4d63-a814-45d68dc2d1d7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"1b83f055-61ec-4edb-b915-9f951219e688\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:27:30.9550215\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\",\"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\":\"05002380-4c53-4d63-a814-45d68dc2d1d7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"1b83f055-61ec-4edb-b915-9f951219e688\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:27:31.2839295\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"05002380-4c53-4d63-a814-45d68dc2d1d7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"1b83f055-61ec-4edb-b915-9f951219e688\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:27:31.2995863\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c53-4d63-a814-45d68dc2d1d7\"}]"] \ 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 c9d2aeac3417..d6120c24caab 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\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9fe2-4103-a268-f2808d080e57\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9fe2-4103-a268-f2808d080e57\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:06.6992364\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9fe2-4103-a268-f2808d080e57\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:06.7016009\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9fe2-4103-a268-f2808d080e57\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-9fe2-4103-a268-f2808d080e57\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:07:06.7022265\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9fe2-4103-a268-f2808d080e57\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:07:06.7716479\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9fe2-4103-a268-f2808d080e57\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9fe2-4103-a268-f2808d080e57\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:09.2896178\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9fe2-4103-a268-f2808d080e57\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:09.2896178\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"type\":\"Microsoft.Communication.CancelAddParticipantSucceeded\",\"data\":{\"invitationId\":\"8067ff1e-2472-4db1-bff8-67a63e6c7ab2\",\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"addParticipants failed for participant 8:acs:6d889502-3d7a-41a8-befa-d21fd80e8767_00000026-0494-d3bb-85f4-343a0d0061cb. Underlying reason: The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"09002680-8f91-42e5-bcbf-8ce44bb54de9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7ebb1af4-7128-484c-a195-84b7dddcf6a5\",\"publicEventType\":\"Microsoft.Communication.CancelAddParticipantSucceeded\"},\"time\":\"2025-03-05T05:07:11.4374908\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-8f91-42e5-bcbf-8ce44bb54de9\"}]"] \ 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\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\",\"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\":\"05002380-3601-44e7-94d4-b03111a70bfd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:19.5280414\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-e136-4b36-b231-15bc505470b5\",\"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\":\"05002380-e136-4b36-b231-15bc505470b5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:19.5436658\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-e136-4b36-b231-15bc505470b5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-e136-4b36-b231-15bc505470b5\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-e136-4b36-b231-15bc505470b5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:23:19.6063339\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-e136-4b36-b231-15bc505470b5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-3601-44e7-94d4-b03111a70bfd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:23:19.6231445\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-e136-4b36-b231-15bc505470b5\",\"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\":\"05002380-e136-4b36-b231-15bc505470b5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:22.8488549\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-e136-4b36-b231-15bc505470b5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\",\"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\":\"05002380-3601-44e7-94d4-b03111a70bfd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:22.8488549\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\",\"type\":\"Microsoft.Communication.CancelAddParticipantSucceeded\",\"data\":{\"invitationId\":\"33e8436e-7348-4966-872a-56815a0fc474\",\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"addParticipants failed for participant 8:acs:6d889502-3d7a-41a8-befa-d21fd80e8767_00000027-5397-eef2-f24b-09bd4560332c. Underlying reason: The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"05002380-3601-44e7-94d4-b03111a70bfd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"cfdf999c-2d89-4b7c-913c-8cbd46c8cde6\",\"publicEventType\":\"Microsoft.Communication.CancelAddParticipantSucceeded\"},\"time\":\"2025-05-09T06:23:25.3130761\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-3601-44e7-94d4-b03111a70bfd\"}]"] \ 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 ba726c547c31..fe47e32a81da 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\":\"54749c24-977a-48ce-baf9-c862bcf657e3\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:46.3538501\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:46.3538501\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:46.3850956\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:46.4937384\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:49.3731169\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:49.3731169\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:51.6893582\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"type\":\"Microsoft.Communication.AddParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.AddParticipantSucceeded\"},\"time\":\"2025-03-05T05:06:51.990545\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:52.0374514\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:51.990545\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:52.425134\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:51.990545\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:52.8042529\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:52.3675687\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.166662\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.5439266\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:52.3517692\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.9278232\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:52.7371451\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:52.7409013\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:54.2806653\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.1194526\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":12,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:54.6576011\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.1345043\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":13,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:55.0292462\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.5124042\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":14,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:55.3806345\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.5124042\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":15,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:55.7417547\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"type\":\"Microsoft.Communication.RemoveParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.RemoveParticipantSucceeded\"},\"time\":\"2025-03-05T05:06:53.5751461\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":16,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:56.1731107\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"09002680-cb8a-40e5-b225-f5026d191283\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:53.7327175\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-cb8a-40e5-b225-f5026d191283\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\",\"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\":17,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-fa2b-429a-bf56-85418121eea5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:56.6215817\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-fa2b-429a-bf56-85418121eea5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\",\"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\":12,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9e6d-44c4-ad76-e627a9bdf093\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"54749c24-977a-48ce-baf9-c862bcf657e3\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:53.8942696\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9e6d-44c4-ad76-e627a9bdf093\"}]"] \ 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\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"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\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:58.4237671\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:22:58.455042\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:22:58.5182809\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"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\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:59.1339079\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"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\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:00.7362542\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"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\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:00.7362542\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","{\"to\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"from\":{\"kind\":\"communicationUser\",\"rawId\":\"REDACTED\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:23:02.8667987\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"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\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.0642564\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.1178463\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"type\":\"Microsoft.Communication.AddParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.AddParticipantSucceeded\"},\"time\":\"2025-05-09T06:23:03.070954\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.4587767\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"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\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.0636833\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.8046792\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"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\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.3968051\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:04.1513087\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"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\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.4205115\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:04.4831647\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"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\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.7423158\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:04.8282044\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"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\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:03.7736986\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":12,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:05.1901934\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"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\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:04.1193196\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":13,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:05.5582213\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"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\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:04.103801\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\",\"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\":14,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"05002380-5620-4769-8fe6-3bf65d6c41f7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:05.900844\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-5620-4769-8fe6-3bf65d6c41f7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"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\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:04.4363881\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"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\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:04.4363881\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5300,\"message\":\"The conversation has ended. DiagCode: 0#5300.@\"},\"callConnectionId\":\"05002380-2c05-4e29-89e0-eb7ca62a5085\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:23:04.4514963\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c05-4e29-89e0-eb7ca62a5085\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\",\"type\":\"Microsoft.Communication.RemoveParticipantSucceeded\",\"data\":{\"participant\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-673f-4af6-b556-08a7de509385\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c507bb43-f2de-4e7b-9052-1a9a9f60837d\",\"publicEventType\":\"Microsoft.Communication.RemoveParticipantSucceeded\"},\"time\":\"2025-05-09T06:23:04.4514963\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-673f-4af6-b556-08a7de509385\"}]"] \ 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 fd8cb079883c..f4f150d2276f 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\":\"7358f836-7518-4122-8e1c-a10dae27157d\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-8943-45ff-9f77-0c54434c66fd\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-8943-45ff-9f77-0c54434c66fd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7358f836-7518-4122-8e1c-a10dae27157d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:34.6640995\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-8943-45ff-9f77-0c54434c66fd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-7911-4f79-b1a4-44d873153897\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-7911-4f79-b1a4-44d873153897\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7358f836-7518-4122-8e1c-a10dae27157d\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:34.6640995\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-7911-4f79-b1a4-44d873153897\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-7911-4f79-b1a4-44d873153897\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-7911-4f79-b1a4-44d873153897\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7358f836-7518-4122-8e1c-a10dae27157d\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:34.6640995\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-7911-4f79-b1a4-44d873153897\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-8943-45ff-9f77-0c54434c66fd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-8943-45ff-9f77-0c54434c66fd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7358f836-7518-4122-8e1c-a10dae27157d\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:34.7115432\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-8943-45ff-9f77-0c54434c66fd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-7911-4f79-b1a4-44d873153897\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"09002680-7911-4f79-b1a4-44d873153897\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7358f836-7518-4122-8e1c-a10dae27157d\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:36.7602543\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-7911-4f79-b1a4-44d873153897\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-8943-45ff-9f77-0c54434c66fd\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"09002680-8943-45ff-9f77-0c54434c66fd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7358f836-7518-4122-8e1c-a10dae27157d\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:36.9906406\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-8943-45ff-9f77-0c54434c66fd\"}]"] \ 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\":\"bdde3aa6-a71e-4e5f-af0e-fa436cee7587\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-70b1-4a26-b1ba-3019fea7731b\",\"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\":\"05002380-70b1-4a26-b1ba-3019fea7731b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bdde3aa6-a71e-4e5f-af0e-fa436cee7587\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:43.1549157\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-70b1-4a26-b1ba-3019fea7731b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-ec8d-429e-b334-48decbdaa12f\",\"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\":\"05002380-ec8d-429e-b334-48decbdaa12f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bdde3aa6-a71e-4e5f-af0e-fa436cee7587\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:43.1705886\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-ec8d-429e-b334-48decbdaa12f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-ec8d-429e-b334-48decbdaa12f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-ec8d-429e-b334-48decbdaa12f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bdde3aa6-a71e-4e5f-af0e-fa436cee7587\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:22:43.2345525\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-ec8d-429e-b334-48decbdaa12f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-70b1-4a26-b1ba-3019fea7731b\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-70b1-4a26-b1ba-3019fea7731b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bdde3aa6-a71e-4e5f-af0e-fa436cee7587\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:22:43.3129448\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-70b1-4a26-b1ba-3019fea7731b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-70b1-4a26-b1ba-3019fea7731b\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"05002380-70b1-4a26-b1ba-3019fea7731b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bdde3aa6-a71e-4e5f-af0e-fa436cee7587\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:22:45.9881753\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-70b1-4a26-b1ba-3019fea7731b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-ec8d-429e-b334-48decbdaa12f\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"05002380-ec8d-429e-b334-48decbdaa12f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bdde3aa6-a71e-4e5f-af0e-fa436cee7587\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:22:46.0044058\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-ec8d-429e-b334-48decbdaa12f\"}]"] \ 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 697fd82f3d78..2c55f0afab4f 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\":\"7c6c686b-ba40-421a-8b92-e4e278730789\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-a836-475c-8c1f-58bceffba0a1\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-a836-475c-8c1f-58bceffba0a1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:03.2180262\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-a836-475c-8c1f-58bceffba0a1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-a836-475c-8c1f-58bceffba0a1\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-a836-475c-8c1f-58bceffba0a1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:03.2493338\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-a836-475c-8c1f-58bceffba0a1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-4aad-4475-aef6-174e6efb4ee9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-4aad-4475-aef6-174e6efb4ee9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:03.2805992\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-4aad-4475-aef6-174e6efb4ee9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-4aad-4475-aef6-174e6efb4ee9\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-4aad-4475-aef6-174e6efb4ee9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:03.2805992\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-4aad-4475-aef6-174e6efb4ee9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-777a-432f-bd28-534333d1b7bd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:07.3307313\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-777a-432f-bd28-534333d1b7bd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:06:07.346421\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-777a-432f-bd28-534333d1b7bd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:06:07.7076641\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"09002680-777a-432f-bd28-534333d1b7bd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:09.2617903\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-777a-432f-bd28-534333d1b7bd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-a836-475c-8c1f-58bceffba0a1\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"09002680-a836-475c-8c1f-58bceffba0a1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:09.2740451\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-a836-475c-8c1f-58bceffba0a1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-4aad-4475-aef6-174e6efb4ee9\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"09002680-4aad-4475-aef6-174e6efb4ee9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"7c6c686b-ba40-421a-8b92-e4e278730789\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:09.4158514\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-4aad-4475-aef6-174e6efb4ee9\"}]"] \ 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\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c18-4aca-9bdf-9bc8c033713d\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-2c18-4aca-9bdf-9bc8c033713d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:22:25.5674189\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c18-4aca-9bdf-9bc8c033713d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c18-4aca-9bdf-9bc8c033713d\",\"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\":\"05002380-2c18-4aca-9bdf-9bc8c033713d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:25.4881896\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c18-4aca-9bdf-9bc8c033713d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d6b9-45f4-9421-e0d50047a3a5\",\"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\":\"05002380-d6b9-45f4-9421-e0d50047a3a5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:25.472542\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d6b9-45f4-9421-e0d50047a3a5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d6b9-45f4-9421-e0d50047a3a5\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-d6b9-45f4-9421-e0d50047a3a5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:22:25.5478\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d6b9-45f4-9421-e0d50047a3a5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:22:29.822184\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"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\":\"05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:29.822184\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"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\":\"05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:22:30.1843543\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"05002380-d6a2-424e-9389-c3ca0d0f9ead\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:22:30.4997737\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d6a2-424e-9389-c3ca0d0f9ead\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d6b9-45f4-9421-e0d50047a3a5\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"05002380-d6b9-45f4-9421-e0d50047a3a5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:22:30.5153993\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d6b9-45f4-9421-e0d50047a3a5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2c18-4aca-9bdf-9bc8c033713d\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":5001,\"message\":\"This conversation has ended.. DiagCode: 0#5001.@\"},\"callConnectionId\":\"05002380-2c18-4aca-9bdf-9bc8c033713d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8deeb2ec-e0e9-4116-8bc7-45fe6c94e849\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:22:30.5153993\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2c18-4aca-9bdf-9bc8c033713d\"}]"] \ 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 64ad343aa610..be35b8d3c1bd 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\":\"a0a4ce36-d74b-4155-8659-3b0e5d2c09b4\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-9f1f-437d-b004-4ea4924fddb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a0a4ce36-d74b-4155-8659-3b0e5d2c09b4\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:10:53.6079705\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-fbf3-4b55-ab4c-3caaf7f2a583\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-fbf3-4b55-ab4c-3caaf7f2a583\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a0a4ce36-d74b-4155-8659-3b0e5d2c09b4\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:10:53.6079705\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-fbf3-4b55-ab4c-3caaf7f2a583\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-fbf3-4b55-ab4c-3caaf7f2a583\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-fbf3-4b55-ab4c-3caaf7f2a583\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a0a4ce36-d74b-4155-8659-3b0e5d2c09b4\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:10:53.6079705\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-fbf3-4b55-ab4c-3caaf7f2a583\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-9f1f-437d-b004-4ea4924fddb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a0a4ce36-d74b-4155-8659-3b0e5d2c09b4\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:10:53.6870147\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\",\"type\":\"Microsoft.Communication.MediaStreamingStarted\",\"data\":{\"mediaStreamingUpdate\":{\"contentType\":\"Audio\",\"mediaStreamingStatus\":\"mediaStreamingStarted\",\"mediaStreamingStatusDetails\":\"subscriptionStarted\"},\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-9f1f-437d-b004-4ea4924fddb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a0a4ce36-d74b-4155-8659-3b0e5d2c09b4\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStarted\"},\"time\":\"2025-03-05T05:10:56.9546699\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\",\"type\":\"Microsoft.Communication.MediaStreamingStopped\",\"data\":{\"mediaStreamingUpdate\":{\"contentType\":\"Audio\",\"mediaStreamingStatus\":\"mediaStreamingStopped\",\"mediaStreamingStatusDetails\":\"subscriptionStopped\"},\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-9f1f-437d-b004-4ea4924fddb5\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a0a4ce36-d74b-4155-8659-3b0e5d2c09b4\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStopped\"},\"time\":\"2025-03-05T05:10:58.1240543\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9f1f-437d-b004-4ea4924fddb5\"}]"] \ 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\":\"57fe4864-0252-4c05-bace-6326803f8e71\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\",\"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\":\"05002380-8f86-49df-add0-fb58663a6f7d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57fe4864-0252-4c05-bace-6326803f8e71\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:23.8638752\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6d9d-4b15-b8db-e4689c747c49\",\"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\":\"05002380-6d9d-4b15-b8db-e4689c747c49\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57fe4864-0252-4c05-bace-6326803f8e71\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:23.8638752\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6d9d-4b15-b8db-e4689c747c49\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6d9d-4b15-b8db-e4689c747c49\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-6d9d-4b15-b8db-e4689c747c49\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57fe4864-0252-4c05-bace-6326803f8e71\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:23.9906322\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6d9d-4b15-b8db-e4689c747c49\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-8f86-49df-add0-fb58663a6f7d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57fe4864-0252-4c05-bace-6326803f8e71\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:24.0373004\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\",\"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\":\"05002380-8f86-49df-add0-fb58663a6f7d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57fe4864-0252-4c05-bace-6326803f8e71\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStarted\"},\"time\":\"2025-05-09T06:26:27.8088625\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\",\"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\":\"05002380-8f86-49df-add0-fb58663a6f7d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"57fe4864-0252-4c05-bace-6326803f8e71\",\"publicEventType\":\"Microsoft.Communication.MediaStreamingStopped\"},\"time\":\"2025-05-09T06:26:28.9915988\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-8f86-49df-add0-fb58663a6f7d\"}]"] \ 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 beb48d375ded..6448b576eeff 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\":\"bf80131a-2147-4577-b660-b6908d4f31d7\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-4a25-4c10-b9a4-5341af3c6021\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"09002680-4a25-4c10-b9a4-5341af3c6021\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bf80131a-2147-4577-b660-b6908d4f31d7\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:05:47.9701737\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-4a25-4c10-b9a4-5341af3c6021\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-4a25-4c10-b9a4-5341af3c6021\",\"type\":\"Microsoft.Communication.CreateCallFailed\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"09002680-4a25-4c10-b9a4-5341af3c6021\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"bf80131a-2147-4577-b660-b6908d4f31d7\",\"publicEventType\":\"Microsoft.Communication.CreateCallFailed\"},\"time\":\"2025-03-05T05:05:47.9701737\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-4a25-4c10-b9a4-5341af3c6021\"}]"] \ 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\":\"00eab6a3-b612-44ba-9b6f-5d1a641578bc\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4e62-436f-bdc3-5cfa6cf4f2ff\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"05002380-4e62-436f-bdc3-5cfa6cf4f2ff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00eab6a3-b612-44ba-9b6f-5d1a641578bc\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-05-09T06:22:13.2128589\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4e62-436f-bdc3-5cfa6cf4f2ff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4e62-436f-bdc3-5cfa6cf4f2ff\",\"type\":\"Microsoft.Communication.CreateCallFailed\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":603,\"subCode\":0,\"message\":\"Decline. DiagCode: 603#0.@\"},\"callConnectionId\":\"05002380-4e62-436f-bdc3-5cfa6cf4f2ff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"00eab6a3-b612-44ba-9b6f-5d1a641578bc\",\"publicEventType\":\"Microsoft.Communication.CreateCallFailed\"},\"time\":\"2025-05-09T06:22:13.2128589\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4e62-436f-bdc3-5cfa6cf4f2ff\"}]"] \ 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 8203e86f7498..7d4287b7ea4d 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\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-2a53-4922-85f3-70195db1d669\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-2a53-4922-85f3-70195db1d669\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:11:25.7298232\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-2a53-4922-85f3-70195db1d669\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-2a53-4922-85f3-70195db1d669\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-2a53-4922-85f3-70195db1d669\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:25.7773603\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-2a53-4922-85f3-70195db1d669\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-5475-4f84-8842-2222ead9a207\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:11:25.8874441\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-5475-4f84-8842-2222ead9a207\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:26.2723107\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\",\"type\":\"Microsoft.Communication.TranscriptionStarted\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStarted\",\"transcriptionStatusDetails\":\"subscriptionStarted\"},\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-5475-4f84-8842-2222ead9a207\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStarted\"},\"time\":\"2025-03-05T05:11:29.4717109\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\",\"type\":\"Microsoft.Communication.TranscriptionStopped\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStopped\",\"transcriptionStatusDetails\":\"subscriptionStopped\"},\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-5475-4f84-8842-2222ead9a207\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStopped\"},\"time\":\"2025-03-05T05:11:32.6029876\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\",\"type\":\"Microsoft.Communication.TranscriptionStopped\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStopped\",\"transcriptionStatusDetails\":\"streamConnectionInterrupted\"},\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":500,\"subCode\":8579,\"message\":\"Action failed, transcription was canceled.\"},\"callConnectionId\":\"00002680-5475-4f84-8842-2222ead9a207\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"52a62de0-cc1f-4434-ba2a-ad43bcbfb947\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStopped\"},\"time\":\"2025-03-05T05:11:32.6029876\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5475-4f84-8842-2222ead9a207\"}]"] \ 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\":\"2e19e4b2-f94e-482d-b514-d2df8b5e33dc\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-91ad-4056-814e-755df308fd47\",\"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\":\"05002380-91ad-4056-814e-755df308fd47\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"2e19e4b2-f94e-482d-b514-d2df8b5e33dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:58.0282011\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-91ad-4056-814e-755df308fd47\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\",\"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\":\"05002380-bab3-47cd-b785-9813fc15ec59\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"2e19e4b2-f94e-482d-b514-d2df8b5e33dc\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:58.0282011\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-91ad-4056-814e-755df308fd47\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-91ad-4056-814e-755df308fd47\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"2e19e4b2-f94e-482d-b514-d2df8b5e33dc\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:58.1229805\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-91ad-4056-814e-755df308fd47\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-bab3-47cd-b785-9813fc15ec59\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"2e19e4b2-f94e-482d-b514-d2df8b5e33dc\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:58.1392474\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\",\"type\":\"Microsoft.Communication.TranscriptionStarted\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStarted\",\"transcriptionStatusDetails\":\"subscriptionStarted\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-bab3-47cd-b785-9813fc15ec59\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"2e19e4b2-f94e-482d-b514-d2df8b5e33dc\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStarted\"},\"time\":\"2025-05-09T06:27:02.1196502\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\",\"type\":\"Microsoft.Communication.TranscriptionStopped\",\"data\":{\"transcriptionUpdate\":{\"transcriptionStatus\":\"transcriptionStopped\",\"transcriptionStatusDetails\":\"subscriptionStopped\"},\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-bab3-47cd-b785-9813fc15ec59\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"2e19e4b2-f94e-482d-b514-d2df8b5e33dc\",\"publicEventType\":\"Microsoft.Communication.TranscriptionStopped\"},\"time\":\"2025-05-09T06:27:05.2559903\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-bab3-47cd-b785-9813fc15ec59\"}]"] \ 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 6932a6b5e7bf..eae4746e1f77 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 @@ -["[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-d9b2-43e0-9e4e-4a44ad7dad4f\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"08002680-d9b2-43e0-9e4e-4a44ad7dad4f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"4500fed7-e1cd-4c1f-9c7f-1ec545843a38\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:09.2240574\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-d9b2-43e0-9e4e-4a44ad7dad4f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/08002680-a72d-45ec-aa54-d156ae433b95\",\"type\":\"Microsoft.Communication.CallDisconnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":540000,\"message\":\"The conversation has ended\"},\"callConnectionId\":\"08002680-a72d-45ec-aa54-d156ae433b95\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"d2b98a7f-e0ce-4405-98ae-1b5b85bb9e10\",\"publicEventType\":\"Microsoft.Communication.CallDisconnected\"},\"time\":\"2025-03-05T05:06:09.7269266\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/08002680-a72d-45ec-aa54-d156ae433b95\"}]","{\"to\":{\"kind\":\"phoneNumber\",\"rawId\":\"REDACTED\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"from\":{\"kind\":\"phoneNumber\",\"rawId\":\"REDACTED\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"serverCallId\":\"REDACTED\",\"callerDisplayName\":\"\",\"incomingCallContext\":\"REDACTED\",\"correlationId\":\"716fb88e-7a5a-4ae1-b953-a1d519595a52\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"phoneNumber\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-b0ee-44ac-be45-b6015074d407\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"4ba75dae-5a1d-4c72-911e-a5d805dedb69\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:58.0584334\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-3717-497b-a894-f68c64158883\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-3717-497b-a894-f68c64158883\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"716fb88e-7a5a-4ae1-b953-a1d519595a52\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:08:58.0747348\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-3717-497b-a894-f68c64158883\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-b0ee-44ac-be45-b6015074d407\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"4ba75dae-5a1d-4c72-911e-a5d805dedb69\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:08:58.3583025\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-3717-497b-a894-f68c64158883\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-3717-497b-a894-f68c64158883\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"716fb88e-7a5a-4ae1-b953-a1d519595a52\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:58.609263\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-3717-497b-a894-f68c64158883\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\",\"type\":\"Microsoft.Communication.SendDtmfTonesCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-b0ee-44ac-be45-b6015074d407\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"4ba75dae-5a1d-4c72-911e-a5d805dedb69\",\"publicEventType\":\"Microsoft.Communication.SendDtmfTonesCompleted\"},\"time\":\"2025-03-05T05:09:05.0583303\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\",\"type\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"00002680-b0ee-44ac-be45-b6015074d407\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"4ba75dae-5a1d-4c72-911e-a5d805dedb69\",\"publicEventType\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\"},\"time\":\"2025-03-05T05:09:05.6716338\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b0ee-44ac-be45-b6015074d407\"}]"] \ 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\":\"9e71c0a1-c7aa-46ca-abdb-c83fa65e8200\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"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\":\"05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"61161cb0-5825-4f97-b069-2739c5f47a40\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:24:51.8550972\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-3def-46e0-897e-5c277f1e187d\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-3def-46e0-897e-5c277f1e187d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9e71c0a1-c7aa-46ca-abdb-c83fa65e8200\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:24:51.9413415\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-3def-46e0-897e-5c277f1e187d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"61161cb0-5825-4f97-b069-2739c5f47a40\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:24:51.9713982\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-3def-46e0-897e-5c277f1e187d\",\"type\":\"Microsoft.Communication.ParticipantsUpdated\",\"data\":{\"participants\":[{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"communicationUser\",\"communicationUser\":{\"id\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false},{\"identifier\":{\"rawId\":\"REDACTED\",\"kind\":\"phoneNumber\",\"phoneNumber\":{\"value\":\"REDACTED\"}},\"isMuted\":false,\"isOnHold\":false}],\"sequenceNumber\":1,\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"version\":\"2025-05-15\",\"callConnectionId\":\"05002380-3def-46e0-897e-5c277f1e187d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"9e71c0a1-c7aa-46ca-abdb-c83fa65e8200\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:24:52.5373575\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-3def-46e0-897e-5c277f1e187d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"type\":\"Microsoft.Communication.SendDtmfTonesCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"61161cb0-5825-4f97-b069-2739c5f47a40\",\"publicEventType\":\"Microsoft.Communication.SendDtmfTonesCompleted\"},\"time\":\"2025-05-09T06:24:55.7297359\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"type\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":7000,\"message\":\"The conversation has ended. DiagCode: 0#7000.@\"},\"callConnectionId\":\"05002380-dfba-4ac9-8c40-2fb34fe1b203\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"61161cb0-5825-4f97-b069-2739c5f47a40\",\"publicEventType\":\"Microsoft.Communication.ContinuousDtmfRecognitionStopped\"},\"time\":\"2025-05-09T06:24:56.4377276\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-dfba-4ac9-8c40-2fb34fe1b203\"}]"] \ 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 bee4038d7049..93d283e49f68 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\":\"a9735b79-beed-4882-8449-5eade4c353cf\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-357e-4638-bcc7-f67c84ff6931\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:07.050362\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-0bee-4251-a78d-385e6f2930f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:07.0564601\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-357e-4638-bcc7-f67c84ff6931\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:11:07.0551994\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-0bee-4251-a78d-385e6f2930f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:11:07.1401195\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-357e-4638-bcc7-f67c84ff6931\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:11.1252698\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-0bee-4251-a78d-385e6f2930f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:11.1252698\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-0bee-4251-a78d-385e6f2930f3\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:14.519588\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-0bee-4251-a78d-385e6f2930f3\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-357e-4638-bcc7-f67c84ff6931\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a9735b79-beed-4882-8449-5eade4c353cf\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:11:14.519588\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-357e-4638-bcc7-f67c84ff6931\"}]"] \ 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\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\",\"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\":\"05002380-b094-41fb-8f69-32086ef962ed\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:38.9238684\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"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\":\"05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:38.9388976\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:39.0175733\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-b094-41fb-8f69-32086ef962ed\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:39.0175733\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"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\":\"05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:42.8351754\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\",\"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\":\"05002380-b094-41fb-8f69-32086ef962ed\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:42.8351754\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\",\"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\":\"05002380-b094-41fb-8f69-32086ef962ed\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:46.3701507\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-b094-41fb-8f69-32086ef962ed\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"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\":\"05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"71f45a2b-d4c1-4297-8bfc-2c06c74ac549\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:46.3701507\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6f7b-43d6-9cf1-6f1db4f5ec5f\"}]"] \ 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 b3d29b52ab95..3081ffdf878c 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\":\"dd4edbb8-36a7-40db-8f4f-3b481d60d5d8\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-062f-4308-ab87-5427daa80363\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dd4edbb8-36a7-40db-8f4f-3b481d60d5d8\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:10:38.2941461\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-6f85-4b4c-938e-9e58586f1fb9\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-6f85-4b4c-938e-9e58586f1fb9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dd4edbb8-36a7-40db-8f4f-3b481d60d5d8\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:10:38.2941461\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-6f85-4b4c-938e-9e58586f1fb9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-6f85-4b4c-938e-9e58586f1fb9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-6f85-4b4c-938e-9e58586f1fb9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dd4edbb8-36a7-40db-8f4f-3b481d60d5d8\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:10:38.3268155\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-6f85-4b4c-938e-9e58586f1fb9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-062f-4308-ab87-5427daa80363\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dd4edbb8-36a7-40db-8f4f-3b481d60d5d8\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:10:38.3573005\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-062f-4308-ab87-5427daa80363\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dd4edbb8-36a7-40db-8f4f-3b481d60d5d8\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-03-05T05:10:40.9324277\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-062f-4308-ab87-5427daa80363\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"dd4edbb8-36a7-40db-8f4f-3b481d60d5d8\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-03-05T05:10:45.1536721\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-062f-4308-ab87-5427daa80363\"}]"] \ 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\":\"8ed0cf5a-22cc-4564-b72f-b783da23cb50\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-b544-4ae7-8c28-e6ab1bfd59dd\",\"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\":\"05002380-b544-4ae7-8c28-e6ab1bfd59dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8ed0cf5a-22cc-4564-b72f-b783da23cb50\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:07.5048631\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-b544-4ae7-8c28-e6ab1bfd59dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"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\":\"05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8ed0cf5a-22cc-4564-b72f-b783da23cb50\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:26:07.5048631\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8ed0cf5a-22cc-4564-b72f-b783da23cb50\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:07.6310973\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-b544-4ae7-8c28-e6ab1bfd59dd\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-b544-4ae7-8c28-e6ab1bfd59dd\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8ed0cf5a-22cc-4564-b72f-b783da23cb50\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:26:07.6159619\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-b544-4ae7-8c28-e6ab1bfd59dd\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8ed0cf5a-22cc-4564-b72f-b783da23cb50\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-09T06:26:09.7927926\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-4c5e-4e69-90f3-17c24ee1ef9b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"8ed0cf5a-22cc-4564-b72f-b783da23cb50\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-09T06:26:14.0129546\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-4c5e-4e69-90f3-17c24ee1ef9b\"}]"] \ 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 4edf9039a5ce..c01ffd969103 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\":\"c10105df-684c-4992-8954-6677ec8f04c1\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9356-4a4b-888f-eb46bfbfc06f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-9356-4a4b-888f-eb46bfbfc06f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c10105df-684c-4992-8954-6677ec8f04c1\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:09:15.3831389\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9356-4a4b-888f-eb46bfbfc06f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-b751-4c98-af4e-e6e6231f7c8d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c10105df-684c-4992-8954-6677ec8f04c1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:15.3763301\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9356-4a4b-888f-eb46bfbfc06f\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-9356-4a4b-888f-eb46bfbfc06f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c10105df-684c-4992-8954-6677ec8f04c1\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:15.3861631\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9356-4a4b-888f-eb46bfbfc06f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-b751-4c98-af4e-e6e6231f7c8d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c10105df-684c-4992-8954-6677ec8f04c1\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:09:15.4835351\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-b751-4c98-af4e-e6e6231f7c8d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c10105df-684c-4992-8954-6677ec8f04c1\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-03-05T05:09:20.0184554\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-b751-4c98-af4e-e6e6231f7c8d\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"c10105df-684c-4992-8954-6677ec8f04c1\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-03-05T05:09:26.42697\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-b751-4c98-af4e-e6e6231f7c8d\"}]"] \ 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\":\"b641a956-e962-4ffb-9993-08c6ed4a1a93\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-1207-4a02-ae56-87aa52525157\",\"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\":\"05002380-1207-4a02-ae56-87aa52525157\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b641a956-e962-4ffb-9993-08c6ed4a1a93\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:05.7928444\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-1207-4a02-ae56-87aa52525157\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-1207-4a02-ae56-87aa52525157\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-1207-4a02-ae56-87aa52525157\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b641a956-e962-4ffb-9993-08c6ed4a1a93\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:25:05.9333329\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-1207-4a02-ae56-87aa52525157\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"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\":\"05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b641a956-e962-4ffb-9993-08c6ed4a1a93\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:06.2780157\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b641a956-e962-4ffb-9993-08c6ed4a1a93\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:25:07.1379483\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b641a956-e962-4ffb-9993-08c6ed4a1a93\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-09T06:25:08.514525\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-00b5-49d6-ac0f-72e8f7cb8eb1\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b641a956-e962-4ffb-9993-08c6ed4a1a93\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-09T06:25:14.9397009\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-00b5-49d6-ac0f-72e8f7cb8eb1\"}]"] \ 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 66c0e2e88a74..f85d370904b9 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\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:09:35.6617539\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-a41a-4aac-9c52-7149a7b0344f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:35.6548122\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:35.6562069\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-a41a-4aac-9c52-7149a7b0344f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:09:35.7724452\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:39.8231573\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-a41a-4aac-9c52-7149a7b0344f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:39.8231573\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-a41a-4aac-9c52-7149a7b0344f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-03-05T05:09:41.3865239\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-a41a-4aac-9c52-7149a7b0344f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-03-05T05:09:47.8448204\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-a41a-4aac-9c52-7149a7b0344f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:47.8675283\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-a41a-4aac-9c52-7149a7b0344f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-9832-4e1c-bc5b-5b9acd3b2f7b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"6a3bdb74-6cca-4964-b544-74c1a9301b8a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:47.8637087\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-9832-4e1c-bc5b-5b9acd3b2f7b\"}]"] \ 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\":\"58b59257-c825-47cf-9ff5-defffba20376\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\",\"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\":\"05002380-900d-4f57-8833-1f3d0c180d61\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:24.3423439\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-900d-4f57-8833-1f3d0c180d61\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:25:24.4678269\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"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\":\"05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:24.4678269\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:25:24.4834519\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\",\"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\":\"05002380-900d-4f57-8833-1f3d0c180d61\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:28.1576841\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"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\":\"05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:28.1576841\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-09T06:25:29.8627629\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-2fe7-4c6a-89d5-4c8e6f8b9383\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-09T06:25:36.2722357\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2fe7-4c6a-89d5-4c8e6f8b9383\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\",\"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\":\"05002380-900d-4f57-8833-1f3d0c180d61\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"58b59257-c825-47cf-9ff5-defffba20376\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:36.3081829\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-900d-4f57-8833-1f3d0c180d61\"}]"] \ 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 e1db7df9cbd4..1130fe2353c7 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\":\"0ae4ce89-1565-4c3c-9480-fc4579d920fe\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-bd9a-4964-abdd-a01fa862c675\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0ae4ce89-1565-4c3c-9480-fc4579d920fe\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:33.3082004\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-027c-42c0-958f-ae8be373146f\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-027c-42c0-958f-ae8be373146f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0ae4ce89-1565-4c3c-9480-fc4579d920fe\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:33.3144374\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-027c-42c0-958f-ae8be373146f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-027c-42c0-958f-ae8be373146f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-027c-42c0-958f-ae8be373146f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0ae4ce89-1565-4c3c-9480-fc4579d920fe\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:08:33.3545829\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-027c-42c0-958f-ae8be373146f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-bd9a-4964-abdd-a01fa862c675\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0ae4ce89-1565-4c3c-9480-fc4579d920fe\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:08:33.4025175\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-bd9a-4964-abdd-a01fa862c675\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0ae4ce89-1565-4c3c-9480-fc4579d920fe\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-03-05T05:08:36.2223199\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-bd9a-4964-abdd-a01fa862c675\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"0ae4ce89-1565-4c3c-9480-fc4579d920fe\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-03-05T05:08:44.6860623\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-bd9a-4964-abdd-a01fa862c675\"}]"] \ 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\":\"ee379fad-f9cf-4cd7-9b28-10c002ce0c89\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"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\":\"05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"ee379fad-f9cf-4cd7-9b28-10c002ce0c89\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:24:17.9401116\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6622-4ebc-a875-91d2f493119f\",\"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\":\"05002380-6622-4ebc-a875-91d2f493119f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"ee379fad-f9cf-4cd7-9b28-10c002ce0c89\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:24:17.9401116\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6622-4ebc-a875-91d2f493119f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6622-4ebc-a875-91d2f493119f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-6622-4ebc-a875-91d2f493119f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"ee379fad-f9cf-4cd7-9b28-10c002ce0c89\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:24:18.0397068\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6622-4ebc-a875-91d2f493119f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"ee379fad-f9cf-4cd7-9b28-10c002ce0c89\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:24:18.0810478\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"ee379fad-f9cf-4cd7-9b28-10c002ce0c89\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-09T06:24:21.4299442\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-44b9-4ade-beb1-812b0ae1e3e9\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"ee379fad-f9cf-4cd7-9b28-10c002ce0c89\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-09T06:24:29.9238185\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-44b9-4ade-beb1-812b0ae1e3e9\"}]"] \ 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 1bec9e689fb4..3a871c193d50 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\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9d88-4312-84d1-4e54ff22de3b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:51.3167081\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:51.3130214\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:07:51.3280513\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"09002680-9d88-4312-84d1-4e54ff22de3b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:07:51.4151285\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:55.4615213\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9d88-4312-84d1-4e54ff22de3b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:07:55.4678785\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"09002680-9d88-4312-84d1-4e54ff22de3b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-03-05T05:07:56.1592327\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"09002680-9d88-4312-84d1-4e54ff22de3b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:04.7077106\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"09002680-9d88-4312-84d1-4e54ff22de3b\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-03-05T05:08:04.6864093\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/09002680-9d88-4312-84d1-4e54ff22de3b\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-3574-4a62-9ff0-b4a75afbb8b7\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"a13c2afd-1cb4-438c-9184-c6232e38b86a\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:04.7068903\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-3574-4a62-9ff0-b4a75afbb8b7\"}]"] \ 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\":\"66424ef4-78dd-4a67-b604-207ad1082581\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\",\"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\":\"05002380-53cb-4e96-8580-535de17fedff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:34.4102704\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2daa-43f1-ad40-aa040156730f\",\"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\":\"05002380-2daa-43f1-ad40-aa040156730f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:34.39918\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2daa-43f1-ad40-aa040156730f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2daa-43f1-ad40-aa040156730f\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-2daa-43f1-ad40-aa040156730f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:23:34.4772328\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2daa-43f1-ad40-aa040156730f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-53cb-4e96-8580-535de17fedff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:23:34.5549195\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-2daa-43f1-ad40-aa040156730f\",\"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\":\"05002380-2daa-43f1-ad40-aa040156730f\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:38.6668342\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-2daa-43f1-ad40-aa040156730f\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\",\"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\":\"05002380-53cb-4e96-8580-535de17fedff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:38.6668342\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-53cb-4e96-8580-535de17fedff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-09T06:23:39.9079622\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-53cb-4e96-8580-535de17fedff\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"66424ef4-78dd-4a67-b604-207ad1082581\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-09T06:23:48.4594851\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-53cb-4e96-8580-535de17fedff\"}]"] \ 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 f6527fe59285..fbc1c79c1671 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\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-38fe-451a-ad0f-591871adeded\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-38fe-451a-ad0f-591871adeded\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:56.9758725\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-38fe-451a-ad0f-591871adeded\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-54e4-4719-85f5-e0a52ec5ff07\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:09:56.9608317\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-38fe-451a-ad0f-591871adeded\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-38fe-451a-ad0f-591871adeded\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:09:56.9915383\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-38fe-451a-ad0f-591871adeded\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-54e4-4719-85f5-e0a52ec5ff07\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:09:57.1219019\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-38fe-451a-ad0f-591871adeded\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-38fe-451a-ad0f-591871adeded\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:10:01.3020749\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-38fe-451a-ad0f-591871adeded\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-54e4-4719-85f5-e0a52ec5ff07\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:10:01.3020749\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-54e4-4719-85f5-e0a52ec5ff07\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-03-05T05:10:02.8798758\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-54e4-4719-85f5-e0a52ec5ff07\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-03-05T05:10:07.3180004\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-54e4-4719-85f5-e0a52ec5ff07\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"51770722-c7d9-4ea4-bb33-003ac9f5943c\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:10:07.3337147\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-54e4-4719-85f5-e0a52ec5ff07\"}]"] \ 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\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-93e9-4a02-ba6a-28991902f263\",\"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\":\"05002380-93e9-4a02-ba6a-28991902f263\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:46.6014278\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-93e9-4a02-ba6a-28991902f263\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\",\"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\":\"05002380-d141-4c4e-8e87-9071728e9255\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:46.6014278\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-93e9-4a02-ba6a-28991902f263\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-93e9-4a02-ba6a-28991902f263\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:25:46.7125669\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-93e9-4a02-ba6a-28991902f263\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-d141-4c4e-8e87-9071728e9255\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:25:46.7125669\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\",\"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\":\"05002380-d141-4c4e-8e87-9071728e9255\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:49.393651\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-93e9-4a02-ba6a-28991902f263\",\"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\":\"05002380-93e9-4a02-ba6a-28991902f263\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:49.3943285\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-93e9-4a02-ba6a-28991902f263\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-d141-4c4e-8e87-9071728e9255\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-09T06:25:50.3558059\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-d141-4c4e-8e87-9071728e9255\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-09T06:25:54.7561892\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\",\"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\":\"05002380-d141-4c4e-8e87-9071728e9255\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"b2675d33-fa7b-482e-81b4-56575b99b3ca\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:25:54.8037228\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-d141-4c4e-8e87-9071728e9255\"}]"] \ 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 a76333f087e4..f9db99df2976 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\":\"e1d3849d-2d55-497a-8829-9def9e225787\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-0aa8-4f75-891a-5aec1a28d4ef\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-0aa8-4f75-891a-5aec1a28d4ef\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:13.9102397\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-0aa8-4f75-891a-5aec1a28d4ef\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-5942-4ba1-9078-66ccb0671665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:13.9102397\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-0aa8-4f75-891a-5aec1a28d4ef\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-0aa8-4f75-891a-5aec1a28d4ef\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:08:13.925914\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-0aa8-4f75-891a-5aec1a28d4ef\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"00002680-5942-4ba1-9078-66ccb0671665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-03-05T05:08:13.9739143\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-5942-4ba1-9078-66ccb0671665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:18.1852333\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-0aa8-4f75-891a-5aec1a28d4ef\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-0aa8-4f75-891a-5aec1a28d4ef\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:18.1852333\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-0aa8-4f75-891a-5aec1a28d4ef\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-5942-4ba1-9078-66ccb0671665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-03-05T05:08:19.9953987\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2024-09-01-preview\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"00002680-5942-4ba1-9078-66ccb0671665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-03-05T05:08:24.4084005\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\",\"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\":\"2024-09-01-preview\",\"callConnectionId\":\"00002680-5942-4ba1-9078-66ccb0671665\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"e1d3849d-2d55-497a-8829-9def9e225787\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-03-05T05:08:24.4558662\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/00002680-5942-4ba1-9078-66ccb0671665\"}]"] \ 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\":\"73b8e240-168a-42b2-87b7-c14e7a029899\"}","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\",\"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\":\"05002380-6572-4a21-a960-603c09e8a965\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:57.7634221\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\",\"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\":\"05002380-836a-4edf-8d00-4818e397be39\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:23:57.7951669\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-6572-4a21-a960-603c09e8a965\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:23:57.8867833\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\",\"type\":\"Microsoft.Communication.CallConnected\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"\"},\"callConnectionId\":\"05002380-836a-4edf-8d00-4818e397be39\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.CallConnected\"},\"time\":\"2025-05-09T06:23:57.8895209\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\",\"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\":\"05002380-836a-4edf-8d00-4818e397be39\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:24:02.5315182\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\",\"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\":\"05002380-6572-4a21-a960-603c09e8a965\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:24:02.5315182\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\",\"type\":\"Microsoft.Communication.PlayStarted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-836a-4edf-8d00-4818e397be39\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.PlayStarted\"},\"time\":\"2025-05-09T06:24:04.4690248\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\",\"type\":\"Microsoft.Communication.PlayCompleted\",\"data\":{\"version\":\"2025-05-15\",\"resultInformation\":{\"code\":200,\"subCode\":0,\"message\":\"Action completed successfully.\"},\"callConnectionId\":\"05002380-836a-4edf-8d00-4818e397be39\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.PlayCompleted\"},\"time\":\"2025-05-09T06:24:08.9174317\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-836a-4edf-8d00-4818e397be39\"}]","[{\"id\":\"REDACTED\",\"source\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\",\"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\":\"05002380-6572-4a21-a960-603c09e8a965\",\"serverCallId\":\"REDACTED\",\"correlationId\":\"73b8e240-168a-42b2-87b7-c14e7a029899\",\"publicEventType\":\"Microsoft.Communication.ParticipantsUpdated\"},\"time\":\"2025-05-09T06:24:08.9487782\\u002B00:00\",\"specversion\":\"1.0\",\"datacontenttype\":\"application/json\",\"subject\":\"calling/callConnections/05002380-6572-4a21-a960-603c09e8a965\"}]"] \ No newline at end of file