pageView
The user viewed a page.
The user viewed a page. This event is tracked by default inside the Brytelytics API snippet. Whenever the Analytics library detects a URL change, a new page view is automatically logged.
The pageview event supports Google Analytics UTM codes. You can provide these manually, or they will be automatically tracked if omitted from the event but present in the URL. Learn more about UTM codes on the Google Analytics URL Builder help page
| Field | Type | Required | Description |
|---|---|---|---|
referrer | string | No | Override the referring page. |
pageTitle | string | No | Override the title of the page. |
pageURL | string | No | Override the URL of the page. |
utmSource | string | No | Where the campaign originated. |
utmMedium | string | No | The campaign medium, for example email or cost-per-click. |
utmTerm | string | No | The search term used by the campaign. |
utmContent | string | No | Used to differentiate different ads landing on the same page. |
utmCampaign | string | No | The name of your campaign. |
1/* pageView example */23// Call the event with default and auto-determined values.4brytescore( "pageView", {} );
Updated July 25, 2026