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/calling-sdk/includes/manage-calls/manage-calls-web.md
+45Lines changed: 45 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -365,3 +365,48 @@ Check is screen sharing is on. It returns `Boolean`.
365
365
```js
366
366
const isScreenSharingOn = call.isScreenSharingOn;
367
367
```
368
+
## Send or receive a reaction from other participants
369
+
Within ACS you can send and receive reactions when on a group call:
370
+
- Like :+1:
371
+
- Love :heart:
372
+
- Applause :clap:
373
+
- Laugh :smile:
374
+
- Surprise :open_mouth:
375
+
376
+
To send a reaction you will use the `sendReaction(reactionMessage)` API. To receive a reaction message will be buit with Type `ReactionMessage` which uses `Reaction` enums as an attribute.
377
+
378
+
You will need to subscribe for events which provide the subscriber event data as:
0 commit comments