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

# Customer events

> Customer webhook payloads.

## Event types

| Event type     | Trigger                                  |
| -------------- | ---------------------------------------- |
| `user.created` | A non-guest, non-system user is created. |
| `user.updated` | A non-guest, non-system user is updated. |

Atlas does not send `user.created` or `user.updated` for guest users or system users.

## Payload

```json theme={null}
{
  "id": 321,
  "email": "jane@example.com",
  "mobile_number": "+6591234567",
  "name": "Jane Tan",
  "date_of_birth": "1990-01-01",
  "marketing_consent": true,
  "title": "Ms",
  "external_user_links": [
    {
      "external_user_id": "customer-123",
      "external_user_type": "loyalty_integration"
    }
  ]
}
```
