Skip to content

Commit 5eb95bc

Browse files
authored
Update mute-participants-how-to-java.md
update artifactID and version number, as well as update for userIds
1 parent cfa47ac commit 5eb95bc

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

articles/communication-services/how-tos/call-automation/includes/mute-participants-how-to-java.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ Azure Communication Services Call Automation SDK package is retrieved from the A
5858
``` xml
5959
<dependency>
6060
<groupId>com.azure</groupId>
61-
<artifactId>azure-communication-callingserver</artifactId>
62-
<version>1.0.0-alpha.20220829.1</version>
61+
<artifactId>azure-communication-callautomation</artifactId>
62+
<version>1.0.0-alpha.20230317.1</version>
6363
</dependency>
6464
```
65+
6566
## Update App.java with code
6667

6768
In your editor of choice, open App.java file and update it with the code provided in [Update app.java with code](../../../quickstarts/call-automation/callflows-for-customer-interactions.md) section.
@@ -90,30 +91,30 @@ callConnectionAsync.muteParticipantsAsync(target).block();
9091
"participants": [
9192
{
9293
"identifier": {
93-
"rawId": "8:acs:0f6adfcd-1795-4f59-b72a-b88ab6721971_00000017-a511-a8bd-1000-343a0d0045c3",
94+
"rawId": "<ACS_USER_ID>",
9495
"kind": "communicationUser",
9596
"communicationUser": {
96-
"id": "8:acs:0f6adfcd-1795-4f59-b72a-b88ab6721971_00000017-a511-a8bd-1000-343a0d0045c3"
97+
"id": "<ACS_USER_ID>"
9798
}
9899
},
99100
"isMuted": true
100101
},
101102
{
102103
"identifier": {
103-
"rawId": "8:acs:0f6adfcd-1795-4f59-b72a-b88ab6721971_becb5f68-7d55-4b4c-9010-d925a7b100d6",
104+
"rawId": "<ACS_USER_ID>",
104105
"kind": "communicationUser",
105106
"communicationUser": {
106-
"id": "8:acs:0f6adfcd-1795-4f59-b72a-b88ab6721971_becb5f68-7d55-4b4c-9010-d925a7b100d6"
107+
"id": "<ACS_USER_ID>"
107108
}
108109
},
109110
"isMuted": false
110111
},
111112
{
112113
"identifier": {
113-
"rawId": "8:acs:0f6adfcd-1795-4f59-b72a-b88ab6721971_00000017-a511-de0e-1000-343a0d0045d0",
114+
"rawId": "<ACS_USER_ID>",
114115
"kind": "communicationUser",
115116
"communicationUser": {
116-
"id": "8:acs:0f6adfcd-1795-4f59-b72a-b88ab6721971_00000017-a511-de0e-1000-343a0d0045d0"
117+
"id": "<ACS_USER_ID>"
117118
}
118119
},
119120
"isMuted": false

0 commit comments

Comments
 (0)