registeredAccount
The user registered an account on your application or website.
The user registered an account on your application or website. A registration is the first time a user creates their account. Subsequent logins
| 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). Defaults to true. |
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. |
1/* registeredAccount example */23var userAccount = {4 "id": "5",5 "emailAddress": "hi@my-azquints.net",6 "firstName": "H.I.",7 "lastName": "McDunnough"8}910var address = {11 "city": "Raising",12 "stateProvince": "AZ"13}1415var telephone = {16 "home": "480.555.6162"17}1819var data = {20 "userAccount": userAccount,21 "address": address,22 "telephone": telephone,23 "isLead": true,24 "userClassification": "Google Lead"25}2627// dateRegistered will default to now.2829brytescore( "registeredAccount", data );
Updated July 25, 2026