authenticated
The user logged into your application or website.
The user logged into your application or website.
Please note that your must call the authenticated event in ALL situations where a user is signed into your app or website, including automatically signing in from a cookie, or via a third party, like Facebook or Gmail.
| Field | Type | Required | Description |
|---|---|---|---|
userAccount | userAccount | No | The details of the user account. |
address | address | No | The address provided by the user. |
telephone | telephone | No | The telephone number(s) provided by the user. |
isLead | boolean | No | The registered user is a lead. Sometimes a user who registers on your app or site is not a lead (such as a test account or staff member). |
userClassification | string | No | Your classification of this user. Optionally used to segment your leads. |
dateRegistered | timestamp | No | The date the user registered in the system. Defaults to current date and time. (ISO 8601 String) |
1/* authenticated example */23// Build nested objects4var userAccount = {5 "id": "75",6 "emailAddress": "gump@bgcfood99.com",7 "firstName": "Bubba",8 "lastName": "Gump"9}1011var address = {12 "city": "Savannah"13}1415var telephone = {16 "home": "912-555-0840"17}1819// Build the data object20var data = {21 "userAccount": userAccount,22 "address": address,23 "telephone": telephone,24 "isLead": true,25 "userClassification": "Google Lead",26 "dateRegistered": ""27}2829// Call the event30brytescore( "authenticated", data );
Updated July 25, 2026