Skip to content

User Created

The user.created event is triggered when a new user is created 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.created",
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "test@example.com",
"name": "Test User",
"phone_number": "1234567890",
"created_at": "2023-12-04T18:45:44Z",
"updated_at": "2023-12-04T18:45:44Z",
"third_party_id": null
}
}