Documentation Index

Fetch the complete documentation index at: https://help.8x8.com/llms.txt

Use this file to discover all available pages before exploring further.

Redirect Participants After Jitsi Meeting Ends

Prev Next

Objective

Redirect participants to another URL after a JaaS meeting ends.  

Applies To

  • Jitsi as a Service (JaaS)

Procedure

Use the readyToClose event handler to catch when the meeting was left. On the handler, redirect from your JavaScript to whatever URL you wish, similar to the following example:

api.on('readyToClose', () =>

{                 api.dispose();                 api = null;                 window.location = YOUR_REDIRECT_URL;             }