> 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: Page View ## Article: Page View ## Article Link: https://dev.wix.com/docs/sdk/host-modules/site/events/general/page-view.md ## Article Content: # Page View The `PageView` event is triggered whenever a site page is opened. ## Properties | Name | Type | Description | | -------------------- | ------ | --------------------- | | `pageApp` | string | Page app type. | | `pageId` | string | Page ID. | | `pageNumber` | number | Page number. | | `pagePath` | string | Page path. | | `pageTitle` | string | Page title. | | `pageType` | string | Page type. | | `pageTypeIdentifier` | string | Page type identifier. | | `userId` | string | User ID. | | `viewer` | string | Viewer type. | ### Example ```JSON { "pageApp": "editor", "pageId": "pr2uh", "pageNumber": 2, "pagePath": "/multi?apps-override=bf1e5475ccdb4dcb91e7a5f678da0fb2", "pageTitle": "Home", "pageType": "static", "pageTypeIdentifier": "pr2uh", "userId": "d35edd38-4684-4232-9d20-90caccce8cee", "viewer": "TB" } ```