OnReactionEvent: { participantId: number; participantUUID: string; screenName: string; timestamp: number; type: string; unicode: string }

Usage:

zoomSdk.onReaction((event) => {
console.log(event)
});

Console log:

{
"timestamp": 1614831950,
"participantUUID": "xxxxx",
"screenName": "xxxxx",
"type": "clap"
}

Type declaration

  • participantId: number

    Participant ID of the user who sent the reaction

    Deprecated

    use participantUUID instead of participantId

  • participantUUID: string

    Participant UUID of the user who sent the reaction

  • screenName: string

    Screen name of the user who sent the reaction

  • timestamp: number

    Timestamp at which the reaction was sent

  • type: string

    Type of reaction. Zoom Apps use system emojis (macOS & Windows) along with a few custom reactions including "yes", "no", "speed up", and "slow down"

  • unicode: string

    Unicode representation of the reaction

Generated using TypeDoc