## Generate summary of Transcripts for the session `client.realtimeKit.sessions.generateSummaryOfTranscripts(stringappId, stringsessionId, SessionGenerateSummaryOfTranscriptsParamsparams, RequestOptionsoptions?): void` **post** `/accounts/{account_id}/realtime/kit/{app_id}/sessions/{session_id}/summary` Trigger Summary generation of Transcripts for the session ID. ### Parameters - `appId: string` The app identifier tag. - `sessionId: string` - `params: SessionGenerateSummaryOfTranscriptsParams` - `account_id: string` The account identifier tag. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); await client.realtimeKit.sessions.generateSummaryOfTranscripts('app_id', 'session_id', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); ```