> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Event

The ingestion of custom events consumes [Davis Data Units](https://dt-url.net/ddu) (DDUs) from the events pool.

## Basic Parameters

<div className="integrations-table">
  | Parameter  | Description                                                                                                                                                                                                                                                  |
  | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | End Time   | The end time of the event, in UTC milliseconds.<br /><br />If not set, the start time plus timeout is used.                                                                                                                                                  |
  | Event Type | The type of the event.                                                                                                                                                                                                                                       |
  | Start Time | The start time of the event, in UTC milliseconds.<br /><br />If not set, the current timestamp is used.<br /><br />Depending on the event type, the start time must not lie in the future more than 5 minutes for trigger events and 7 days for info events. |
  | Title      | The title of the event.                                                                                                                                                                                                                                      |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                                                                                                                                                                         |
  | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Entity Selector | The [entity selector](https://dt-url.net/apientityselector), defining a set of Dynatrace entities to be associated with the event.<br /><br />Only entities that have been active within the last 24 hours can be selected. <br /><br /> If not set, the event is associated with the environment (`dt.entity.environment`) entity. |
  | Timeout         | The timeout of the event, in minutes.<br /><br />If not set, 15 is used.<br /><br />The timeout will automatically be capped to a maximum of 360 minutes (6 hours).<br /><br />Problem-opening events can be refreshed and therefore kept open by sending the same payload again.                                                   |
</div>

## Example Output

```json theme={"dark"}
{
	"eventIngestResults": [
		{
			"correlationId": "The correlation ID of the created event.",
			"status": "The status of the ingestion."
		}
	],
	"reportCount": 0
}
```

## Workflow Library Example

[Create Event with Dynatrace and Send Results Via Email](https://library.blinkops.com/workflows/create-event-with-dynatrace-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/create-event-with-dynatrace-and-send-results-via-email/canvas" />
</div>
