Skip to content

User Updated

The user.updated event is triggered when an existing user’s information is modified in the system.

Event Properties

PropertyTypeDescription
idstringUnique identifier for the user (UUID)
emailstringEmail address of the user
namestringFull name of the user
phone_numberstringPhone number of the user
created_atstringTimestamp when the user was created (ISO 8601 format, e.g. “2023-12-04T18:45:44+08:00” or “2023-12-04T10:45:44Z”)
updated_atstringTimestamp when the user was last updated (ISO 8601 format)
third_party_idstring or nullThird-party system identifier for the user (if applicable)

Example Payload

{
"type": "user.updated",
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "test@example.com",
"name": "Updated Test User",
"phone_number": "0987654321",
"created_at": "2023-12-04T18:45:44Z",
"updated_at": "2023-12-04T19:30:00Z",
"third_party_id": "external_id_123"
}
}