updatedUserInfo

The user updated their contact information.

FieldTypeRequiredDescription
userAccountuserAccountNo

The details of the user account.

addressaddressNo

The address provided by the user.

telephonetelephoneNo

The telephone number(s) provided by the user.

1/* updatedUserInfo example */
2
3var userAccount = {
4 "id": "66",
5 "emailAddress": "chewie@awwwrrrawwhh.com",
6 "firstName": "Chewbacca",
7 "lastName": "Rahhggaahh Urughaghhh"
8}
9
10var address = {
11 "streetAddress": "298-B24DC Wroshyr Tr",
12 "city": "Thikkiiana",
13 "stateProvince": "Woolwarricca",
14 "postalCode": "P85D-2",
15 "country": "Kashyyyk"
16}
17
18var telephone = {
19 "home": "11381138",
20 "mobile": "5041977"
21}
22
23var data = {
24 "userAccount": userAccount,
25 "address": address,
26 "telephone": telephone
27}
28
29// dateRegistered will default to now.
30
31brytescore( "updatedUserInfo", data );

Updated July 25, 2026