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.

FieldTypeRequiredDescription
userAccountuserAccountNo

The details of the user account.

addressaddressNo

The address provided by the user.

telephonetelephoneNo

The telephone number(s) provided by the user.

isLeadbooleanNo

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).

userClassificationstringNo

Your classification of this user. Optionally used to segment your leads.

dateRegisteredtimestampNo

The date the user registered in the system. Defaults to current date and time. (ISO 8601 String)

1/* authenticated example */
2
3// Build nested objects
4var userAccount = {
5 "id": "75",
6 "emailAddress": "gump@bgcfood99.com",
7 "firstName": "Bubba",
8 "lastName": "Gump"
9}
10
11var address = {
12 "city": "Savannah"
13}
14
15var telephone = {
16 "home": "912-555-0840"
17}
18
19// Build the data object
20var data = {
21 "userAccount": userAccount,
22 "address": address,
23 "telephone": telephone,
24 "isLead": true,
25 "userClassification": "Google Lead",
26 "dateRegistered": ""
27}
28
29// Call the event
30brytescore( "authenticated", data );

Updated July 25, 2026