> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kobble.io/llms.txt
> Use this file to discover all available pages before exploring further.

# User Created

The `user.created` event is triggered when a new user signs up to your customer portal.

### Event Object

<ParamField path="type" type="user.created" />

<ParamField path="data" type="Event Data Object">
  The corresponding event data object as described below.
</ParamField>

### Data Object

<ParamField path="id" type="string">
  The unique identifier for the user.
</ParamField>

<ParamField path="email" type="string">
  The email address of the user.
</ParamField>

<ParamField path="name" type="string | null">
  The name of the user. Can be null.
</ParamField>

<ParamField path="createdAt" type="string">
  The date and time when the user was created.
</ParamField>

<ParamField path="isVerified" type="boolean">
  Indicates whether the user's email is verified.
</ParamField>
