> For the complete documentation index, see [llms.txt](https://dfend.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dfend.gitbook.io/documentation/developer-api/types/event.md).

# Event

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

## 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](/documentation/developer-api/types/event/eventsignal.md) that triggered this event.
* `type`  <mark style="color:blue;">enum</mark>  The event's [Type](/documentation/developer-api/types/event/type.md).
* `level`  <mark style="color:blue;">enum</mark>  The event's [Level](/documentation/developer-api/types/event/level.md).
* `recommendations`  <mark style="color:blue;">Recommendation\[]</mark>  An array of [Recommendations](/documentation/developer-api/types/event/recommendation.md) 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](/documentation/developer-api/types/signal.md) that triggered this Event.
