> For the complete documentation index, see [llms.txt](https://faq.droam.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://faq.droam.com/menu/webhooks/webhook-payload-types/event-payloads/end-user-events.md).

# End User Events

End User Events are triggered by certain actions aimed at the End User or elements related to it.&#x20;

**end\_user.added** – occurs when Company or Organization adds an End User to themselves and the end user confirms registration, not only be invited (Listing 5.8).&#x20;

**Listing 5.8 – Example of end\_user.added Payload (JSON)**

```
{
    "type":         "end_user.added",
    "data":         {
        "end_user":     {...//End User Model}
    },
    "created_at":   {...//Date Time Model}
}
```

**end\_user.deleted** – occurs when Company or Organization deletes their own End User. The end user must be registered, not only invited (Listing 5.9).&#x20;

**Listing 5.9 – Example of end\_user.deleted Payload (JSON)**

```
{
    "type":         "end_user.deleted",
    "data":         {
        "end_user":     {...//End User Model}
    },
    "created_at":   {...//Date Time Model}
}
```

**end\_user.updated** – occurs when certain data is updated in an organization's/company’s End User, such as a name or email, for example (Listing 5.10).&#x20;

**Listing 5.10 – Example of end\_user.updated Payload (JSON)**

```
{
    "type":          "end_user.updated",
    "data":          {
        "end_user":      {...//End User Model}
    },
    "created_at":    {...//Date Time Model}
}

```
