# Event

An **Event** represents a state change or behavioral detection alert as it relates to an [**Identity**](https://dfend.gitbook.io/documentation/developer-api/types/identity). We will send Events to your [**webhook**](https://dfend.gitbook.io/documentation/developer-api/webhook).

## Attributes

* `account`  <mark style="color:blue;">string</mark>  DFend account ID related to this event.
* `identity`  <mark style="color:blue;">string</mark>  Identity ID related to this event.
* `subscription`  <mark style="color:blue;">string</mark>  Subscription ID (internal).
* `signals`  <mark style="color:blue;">EventSignal\[]</mark>  An array of [EventSignals](https://dfend.gitbook.io/documentation/developer-api/types/event/eventsignal) that triggered this event.
* `type`  <mark style="color:blue;">enum</mark>  The event's [Type](https://dfend.gitbook.io/documentation/developer-api/types/event/type).
* `level`  <mark style="color:blue;">enum</mark>  The event's [Level](https://dfend.gitbook.io/documentation/developer-api/types/event/level).
* `recommendations`  <mark style="color:blue;">Recommendation\[]</mark>  An array of [Recommendations](https://dfend.gitbook.io/documentation/developer-api/types/event/recommendation) for this event.
* `values`  <mark style="color:blue;">object</mark>  Additional event metadata. In the case that a user verification was expected but the response time expired, this will include a `resend` field with value `true`.
* `config`  <mark style="color:blue;">string</mark>  The configuration values used in detection. Use these to tune your detection parameters in Routing.
* `time`  <mark style="color:blue;">string</mark>  The `time` field on the [Signal](https://dfend.gitbook.io/documentation/developer-api/types/signal) that triggered this Event.


---

# 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://dfend.gitbook.io/documentation/developer-api/types/event.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.
