## Kick all participants `client.realtimeKit.activeSession.kickAllParticipants(stringappId, stringmeetingId, ActiveSessionKickAllParticipantsParamsparams, RequestOptionsoptions?): ActiveSessionKickAllParticipantsResponse` **post** `/accounts/{account_id}/realtime/kit/{app_id}/meetings/{meeting_id}/active-session/kick-all` Kicks all participants from an active session for the given meeting ID. ### Parameters - `appId: string` The app identifier tag. - `meetingId: string` - `params: ActiveSessionKickAllParticipantsParams` - `account_id: string` The account identifier tag. ### Returns - `ActiveSessionKickAllParticipantsResponse` - `data?: Data` - `action?: string` - `kicked_participants_count?: number` - `success?: boolean` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const response = await client.realtimeKit.activeSession.kickAllParticipants( 'app_id', 'meeting_id', { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, ); console.log(response.data); ``` #### Response ```json { "data": { "action": "action", "kicked_participants_count": 0 }, "success": true } ```