> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # MarkSessionAsRecorded # Package: analytics # Namespace: SessionIdsService # Method link: https://dev.wix.com/docs/api-reference/business-management/analytics/sessions/mark-session-as-recorded.md ## Permission Scopes: Manage Session Recording Analytics - all permissions: SCOPE.DC-ANALYTICS-AND-REPORTS.MANAGE-SESSIONS ## Introduction Marks a browser session as recorded. --- ## REST API ### Schema ``` Method: markSessionAsRecorded Description: Marks a browser session as recorded. URL: https://www.wixapis.com/analytics/v1/sessions//session-recorded Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: sessionId Method parameters: param name: sessionId | type: sessionId | description: Browser session GUID. | required: true Return type: MarkSessionAsRecordedResponse EMPTY-OBJECT {} ``` ### Examples ### Mark Session as Recorded ```curl curl -X POST \ 'https://www.wixapis.com/analytics/v1/sessions/session-recorded' \ -H 'Content-type: application/json' \ -H 'Authorization: ' \ -d '{ "sessionId": "7f08f28b-f4ca-47be-879e-c871966ee0c0" }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.analytics.SessionIdsService.markSessionAsRecorded(sessionId) Description: Marks a browser session as recorded. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: sessionId Method parameters: param name: sessionId | type: string | description: Browser session GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### markSessionAsRecorded ```javascript import { analyticsSession } from '@wix/analytics-session'; async function markSessionAsRecorded(sessionId) { const response = await analyticsSession.markSessionAsRecorded(sessionId); }; ``` ### markSessionAsRecorded (with elevated permissions) ```javascript import { analyticsSession } from '@wix/analytics-session'; import { auth } from '@wix/essentials'; async function myMarkSessionAsRecordedMethod(sessionId) { const elevatedMarkSessionAsRecorded = auth.elevate(analyticsSession.markSessionAsRecorded); const response = await elevatedMarkSessionAsRecorded(sessionId); } ``` ### markSessionAsRecorded (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { analyticsSession } from '@wix/analytics-session'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { analyticsSession }, // Include the auth strategy and host as relevant }); async function markSessionAsRecorded(sessionId) { const response = await myWixClient.analyticsSession.markSessionAsRecorded(sessionId); }; ``` ---