# Audit Event Type

The Audit Event Type refers to an event that has occurred within the platform. These records are generated automatically and can be utilized to store supplementary information regarding the specific event type.

This object contains the following attributes:

<table><thead><tr><th width="152">Field Name</th><th width="149">Data Type</th><th>Description</th></tr></thead><tbody><tr><td><code>id</code></td><td>string</td><td><p>The ID of the event type. </p><p>Example: AET-7149-2212</p></td></tr><tr><td><code>key</code></td><td>string</td><td><p>The event's key. </p><p>Example: platform.commerce.order.created</p></td></tr><tr><td><code>name</code></td><td>string</td><td><p>The name of the event. </p><p>Example: Order created.</p></td></tr><tr><td><code>description</code></td><td>string</td><td><p>A description of the event. </p><p>Example: A standard event that occurs when the order is created. </p></td></tr></tbody></table>

## Example response

{% code lineNumbers="true" %}

```json
{
  "id": "AET-5699-2751",
  "Key": "platform.commerce.order.created",
  "Name": "Order created.",
  "Description": "A standard event that occurs upon the creation of an order."
}
```

{% endcode %}
