Redirect Participants After Jitsi Meeting Ends

Updated: 03/27/2025

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