> 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 # MarkRecordingsAsDeleted # Package: analytics # Namespace: SessionIdsService # Method link: https://dev.wix.com/docs/api-reference/business-management/analytics/sessions/mark-recordings-as-deleted.md ## Permission Scopes: Manage Session Recording Analytics - all permissions: SCOPE.DC-ANALYTICS-AND-REPORTS.MANAGE-SESSIONS ## Introduction Marks browser session recordings as deleted. --- ## REST API ### Schema ``` Method: markRecordingsAsDeleted Description: Marks browser session recordings as deleted. URL: https://www.wixapis.com/analytics/v1/sessions//recordings-deleted Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: sessionIds Method parameters: param name: sessionIds | type: array | description: Browser session GUIDs. | required: true Return type: MarkRecordingsAsDeletedResponse EMPTY-OBJECT {} ``` ### Examples ### Mark Session Recordings as Deleted ```curl curl -X POST \ 'https://www.wixapis.com/analytics/v1/sessions/recordings-deleted' \ -H 'Content-type: application/json' \ -H 'Authorization: ' \ -d '{ "sessionIds": ["7f08f28b-f4ca-47be-879e-c871966ee0c0", "29c8ae61-88b3-4589-b14a-9faaaa7fb8be"] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.analytics.SessionIdsService.markRecordingsAsDeleted(sessionIds) Description: Marks browser session recordings as deleted. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: sessionIds Method parameters: param name: sessionIds | type: array | description: Browser session GUIDs. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### markRecordingsAsDeleted ```javascript import { analyticsSession } from '@wix/analytics-session'; async function markRecordingsAsDeleted(sessionIds) { const response = await analyticsSession.markRecordingsAsDeleted(sessionIds); }; ``` ### markRecordingsAsDeleted (with elevated permissions) ```javascript import { analyticsSession } from '@wix/analytics-session'; import { auth } from '@wix/essentials'; async function myMarkRecordingsAsDeletedMethod(sessionIds) { const elevatedMarkRecordingsAsDeleted = auth.elevate(analyticsSession.markRecordingsAsDeleted); const response = await elevatedMarkRecordingsAsDeleted(sessionIds); } ``` ### markRecordingsAsDeleted (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 markRecordingsAsDeleted(sessionIds) { const response = await myWixClient.analyticsSession.markRecordingsAsDeleted(sessionIds); }; ``` ---