User profile changed

Record changes related to a user's account.

This event tracks any changes related to a user's profile.

Croct's mascot amazed
Automatically tracked

The SDK automatically tracks this event when you update the user profile.

Input properties

This event has no input properties.

Processed properties

These properties are automatically tracked:

externalUserId
string

The user's unique identifier provided by the application, such as a UUID or a username.

The value must be between 1 and 100 characters long.

patch
object

A set of operations performed on the user profile.

Payload examples

Below are some payload examples for this event:

123456789101112131415161718
{
"type": "userProfileChanged",
"externalUserId": "0e8d3d6e-4b6d-4b7b-8e0f-2e3b9e7b3e4d",
"patch": {
"operations": [
{
"type": "set",
"path": "name",
"value": "John Doe"
},
{
"type": "set",
"path": "email",
"value": "john@croct.com",
}
]
}
}