# 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}
}

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://faq.droam.com/menu/webhooks/webhook-payload-types/event-payloads/end-user-events.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
