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

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). Defaults to true.

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.

1/* registeredAccount example */
2
3var userAccount = {
4 "id": "5",
5 "emailAddress": "hi@my-azquints.net",
6 "firstName": "H.I.",
7 "lastName": "McDunnough"
8}
9
10var address = {
11 "city": "Raising",
12 "stateProvince": "AZ"
13}
14
15var telephone = {
16 "home": "480.555.6162"
17}
18
19var data = {
20 "userAccount": userAccount,
21 "address": address,
22 "telephone": telephone,
23 "isLead": true,
24 "userClassification": "Google Lead"
25}
26
27// dateRegistered will default to now.
28
29brytescore( "registeredAccount", data );

Updated July 25, 2026