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
Copy file name to clipboardExpand all lines: articles/communication-services/concepts/call-automation/call-automation.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ The following list presents the set of features that are currently available in
43
43
|| Redirect* (forward) a call to one or more endpoints | ✔️ | ✔️ | ✔️ | ✔️ |
44
44
|| Reject an incoming call | ✔️ | ✔️ | ✔️ | ✔️ |
45
45
| Mid-call scenarios | Add one or more endpoints to an existing call | ✔️ | ✔️ | ✔️ | ✔️ |
46
+
|| Cancel adding an endpoint to an existing call | ✔️ | ✔️ | ✔️ | ✔️ |
46
47
|| Play Audio from an audio file | ✔️ | ✔️ | ✔️ | ✔️ |
47
48
|| Play Audio using Text-to-Speech | ✔️ | ✔️ | ✔️ | ✔️ |
48
49
|| Recognize user input through DTMF | ✔️ | ✔️ | ✔️ | ✔️ |
@@ -53,6 +54,7 @@ The following list presents the set of features that are currently available in
53
54
|| Mute participant | ✔️ | ✔️ | ✔️ | ✔️ |
54
55
|| Remove one or more endpoints from an existing call| ✔️ | ✔️ | ✔️ | ✔️ |
55
56
|| Blind Transfer* a 1:1 call to another endpoint | ✔️ | ✔️ | ✔️ | ✔️ |
57
+
|| Blind Transfer* a participant from group call to another endpoint | ✔️ | ✔️ | ✔️ | ✔️ |
56
58
|| Hang up a call (remove the call leg) | ✔️ | ✔️ | ✔️ | ✔️ |
57
59
|| Terminate a call (remove all participants and end call)| ✔️ | ✔️ | ✔️ | ✔️ |
58
60
|| Cancel media operations | ✔️ | ✔️ | ✔️ | ✔️ |
@@ -162,6 +164,8 @@ The Call Automation events are sent to the web hook callback URI specified when
162
164
| CallTransferFailed | The transfer of your application’s call leg failed |
163
165
| AddParticipantSucceeded| Your application added a participant |
164
166
| AddParticipantFailed | Your application was unable to add a participant |
167
+
| CancelAddParticipantSucceeded| Your application canceled adding a participant |
168
+
| CancelAddParticipantFailed | Your application was unable to cancel adding a participant |
165
169
| RemoveParticipantSucceeded| Your application has successfully removed a participant from the call. |
166
170
| RemoveParticipantFailed | Your application was unable to remove a participant from the call. |
167
171
| ParticipantsUpdated | The status of a participant changed while your application’s call leg was connected to a call |
@@ -182,6 +186,22 @@ To understand which events are published for different actions, refer to [this g
182
186
183
187
To learn how to secure the callback event delivery, refer to [this guide](../../how-tos/call-automation/secure-webhook-endpoint.md).
184
188
189
+
### Operation Callback Uri
190
+
191
+
It is an optional parameter in some mid-call APIs that use events as their async responses. By default, all events are sent to the default callback Uri set by CreateCall / AnswerCall API when the user establishes a call. With the usage of Operation Callback Uri, corresponding events of this individual (one-time only) request will be sent to the new Uri.
0 commit comments