You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`CallingServerClient` provides the functionality to make call connection, join call connection or initialize a server call.
25
+
`CallingServerClient` provides the functionality to create a call connection, join call connection or join a call with CallLocator.
26
+
Performing more functionality over the eastablised call.
26
27
27
28
## Examples
28
29
29
30
The following section provides several code snippets covering some of the most common Azure Communication Services tasks, including:
30
31
31
-
-[Client Initialization](#client-initialization)
32
-
-[Make a call to a phone number recipient](#make-a-call-to-a-phone-number-recipient)
32
+
Call Connection Client APIs:
33
+
-[Client initialization](#client-initialization)
34
+
-[Create a call connection](#create-a-call-connection)
35
+
-[Add participant](#add-participant)
36
+
-[Remove participant](#remove-participant)
37
+
-[Play audio in the call connection](#play-audio-in-the-call-connection)
38
+
-[Cancel all media operations in the call connection](#cancel-all-media-operations-in-the-call-connection)
39
+
-[Hang up the call connection](#hang-up-the-call-connection)
33
40
34
-
### Client Initialization
41
+
Calling Server Client APIs:
42
+
-[Client initialization](#client-initialization)
43
+
-[Create a server Call](#create-a-call-connection)
44
+
-[Add participant with calllocator to the server call](#add-participant-with-calllocator-to-the-server-call)
45
+
-[Remove participant with calllocator from the server call](#remove-participant-with-calllocator-from-the-server-call)
46
+
-[Play audio with calllocator in the server call](#play-audio-with-calllocator-in-the-server-call)
47
+
-[Hang up the call connection](#hang-up-the-call-connection)
35
48
36
-
To initialize the CallingServer Client, the connection string can be used to instantiate.
49
+
### Client initialization
50
+
51
+
To initialize the CallingServer Client, the connection string can be used to instantiate. Alternatively, you can also use Azure Active Directory-managed identities authentication using DefaultAzureCredential.
37
52
38
53
```Python
39
-
from azure.communication.callingserver import CallingServerClient
54
+
from azure.communication.callingserver.aioimport CallingServerClient
0 commit comments