---
title: "Redirect Participants After Jitsi Meeting Ends"
slug: "redirect-participants-after-jitsi-meeting-ends"
updated: 2026-05-15T18:25:21Z
published: 2026-05-21T21:28:43Z
canonical: "help.8x8.com/redirect-participants-after-jitsi-meeting-ends"
stale: true
---

> ## 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

## Objective

Redirect participants to another URL after a JaaS meeting ends.

## Applies To

- Jitsi as a Service (JaaS)

## Procedure

Use the [readyToClose event handler](https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-iframe#readytoclose) 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; }
