Skip to main content

 

 
8x8 Support

Jitsi Redirect After Meeting End

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;             }

);

  • Was this article helpful?