> 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 # Method name: getListSessionsJobResult(jobId: string, options: GetListSessionsJobResultOptions) # Method package: wixAnalyticsSessionV2 # Method menu location: wixAnalyticsSessionV2 --> analyticsSession --> getListSessionsJobResult # Method Link: https://dev.wix.com/docs/velo/apis/wix-analytics-v2/analytics-session/get-list-sessions-job-result.md # Method Description: Retrieves the job status and a list of session IDs, if ready. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## getListSessionsJobResult example for dashboard page code ```javascript import { analyticsSession } from 'wix-analytics-session.v2'; async function getListSessionsJobResult(jobId, options) { try { const result = await analyticsSession.getListSessionsJobResult(jobId, options); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## getListSessionsJobResult example for exporting from backend code ```javascript import { analyticsSession } from 'wix-analytics-session.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedGetListSessionsJobResult = elevate(analyticsSession.getListSessionsJobResult); export const getListSessionsJobResult = webMethod( Permissions.Anyone, async (jobId, options) => { try { const result = await elevatedGetListSessionsJobResult(jobId, options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---