updatedUserInfo
The user updated their contact information.
The user updated their contact information.
| 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. |
1/* updatedUserInfo example */23var userAccount = {4 "id": "66",5 "emailAddress": "chewie@awwwrrrawwhh.com",6 "firstName": "Chewbacca",7 "lastName": "Rahhggaahh Urughaghhh"8}910var address = {11 "streetAddress": "298-B24DC Wroshyr Tr",12 "city": "Thikkiiana",13 "stateProvince": "Woolwarricca",14 "postalCode": "P85D-2",15 "country": "Kashyyyk"16}1718var telephone = {19 "home": "11381138",20 "mobile": "5041977"21}2223var data = {24 "userAccount": userAccount,25 "address": address,26 "telephone": telephone27}2829// dateRegistered will default to now.3031brytescore( "updatedUserInfo", data );
Updated July 25, 2026