> 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 ## Resource: Sample Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-management/analytics/sessions/sample-flows.md ## Article Content: # Sample flows This article shares some possible use cases your app could support, as well as an example flow that could support each use case. You're certainly not limited to these use cases, but they can be a helpful jumping off point as you plan your app's implementation.
## Record a visitor session and notify Wix that a recording has been made When your app recognizes that a visitor session has begun, your app should: 1. Collect the browser session ID. 2. Record the visitor's session on the site, and map it to the browser session ID. 3. Notify Wix that a recording has been made by calling the [Mark Session as Recorded](https://dev.wix.com/docs/rest/business-management/analytics/sessions/mark-session-as-recorded.md) endpoint and passing the browser session ID. ## Display session recordings to users based on Wix's filter data When a site user (admin or contributor) accesses the dedicated entry point for your app: 1. Wix calls your extension's iframe URL with filter data as query parameters. 2. Collect the filter data from the query parameters. 3. Call [List Sessions Async](https://dev.wix.com/docs/rest/business-management/analytics/sessions/list-sessions-async.md) with the filters from step 2. 4. Collect the job ID and call [Get List Sessions Job Result](https://dev.wix.com/docs/rest/business-management/analytics/sessions/get-list-sessions-job-result.md). 5. If the job is complete, collect the returned session IDs. 6. Display the browser sessions with the IDs returned in step 5.Beta Feature:
This functionality is currently available to select beta users only.