# Event metadata

Event metadata contains information about the webhooks event such as the event ID, type, created date and time, client ID, and environment.

```json
{
    "event": {
        "id": "e4ca1621-bbc7-4c9a-9e81-81d107589690",
        "created": 1614933645,
        "eventType": "Sent",
        "clientId": "e4ca1621-bbc7-4c9a-9e81-81d107589690",
        "environment": "Test"
    }
}
```

{% nestedtable %}

- id	
- This is a unique id for the event.

--- 

- created	
- Unix timestamp of the event.

--- 

- eventType	
- Represents the type of event. There are 11 types of events that can be listened from the webhooks.

---

- clientId	
- The client id of the developer app to which the webhook is currently linked.

---

- environment	
- The environment of the webhooks, either Test (Sandbox) or Live.

{% /nestedtable %}
