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/how-tos/cte-calling-sdk/includes/manage-calls/manage-calls-web.md
+55Lines changed: 55 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -316,3 +316,58 @@ Recommendations for the management of chat ID:
316
316
- Escalation of the 1:1 phone call by adding another phone participant: Use Graph API to get the existing chat ID with only Teams user as a participant or create a new group chat with participants: Teams user ID and "00000000-0000-0000-0000-000000000000"
317
317
- Group call with single Teams user and multiple phone participants: Use Graph API to get existing chat ID with only Teams user as a participant or create a new group chat with participants: Teams user ID and "00000000-0000-0000-0000-000000000000"
318
318
- Group call with more than 2 Teams users: Use Graph API to get or create a group chat with the Teams users
319
+
320
+
## Send or receive a reaction from other participants
321
+
> [!NOTE]
322
+
> This API is provided as a preview for developers and may change based on feedback that we receive. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK version 1.18.1 or higher
323
+
324
+
Within ACS you can send and receive reactions when on a group call:
325
+
- Like :+1:
326
+
- Love :heart:
327
+
- Applause :clap:
328
+
- Laugh :smile:
329
+
- Surprise :open_mouth:
330
+
331
+
To send a reaction you'll use the `sendReaction(reactionMessage)` API. To receive a reaction message will be built with Type `ReactionMessage` which uses `Reaction` enums as an attribute.
332
+
333
+
You'll need to subscribe for events which provide the subscriber event data as:
0 commit comments