> ## 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

Create a new event.

<Note>
  External Documentation

  To learn more, visit the [MISP documentation](https://www.misp-project.org/openapi/#tag/Events/operation/addEvent).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter           | Description                                       |
  | ------------------- | ------------------------------------------------- |
  | Date                | The date of the event.                            |
  | Distribution        | -                                                 |
  | Event Creator Email | The email of the creator of the event.            |
  | Info                | Information about the event. Max length is 65535. |
  | Organization ID     | The organisation identifier.                      |
  | Published           | Represents whether the event was published.       |
  | Sighting Timestamp  | The sighting timestamp.                           |
  | Threat Level ID     | -                                                 |
  | UUID                | UUID of the event.                                |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter           | Description                                                                        |
  | ------------------- | ---------------------------------------------------------------------------------- |
  | Analysis            | The analysis maturity level.                                                       |
  | Attribute Count     | The attribute count.                                                               |
  | Disable Correlation | Prevents correlation with other events.                                            |
  | Extended UUID       | The extended UUID.                                                                 |
  | Locked              | Represents whether the event is locked.                                            |
  | Orgc ID             | The orgc id.                                                                       |
  | Proposal Email Lock | Represents whether there will be an ability to send proposal emails for the event. |
  | Publish Timestamp   | The publish timestamp.                                                             |
  | Sharing Group ID    | The ID of the sharing group.                                                       |
  | Timestamp           | Timestamp of the event.                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"Event": {
		"id": "<string>",
		"orgc_id": "<string>",
		"org_id": "<string>",
		"date": "2010-07-15",
		"threat_level_id": "<string>",
		"info": "<string>",
		"published": false,
		"uuid": "<string>",
		"attribute_count": "<string>",
		"analysis": "<string>",
		"timestamp": "<string>",
		"distribution": "<string>",
		"proposal_email_lock": false,
		"locked": false,
		"publish_timestamp": "<string>",
		"sharing_group_id": "<string>",
		"disable_correlation": false,
		"extends_uuid": "<string>",
		"protected": null,
		"event_creator_email": "<string>",
		"Org": {
			"id": "<string>",
			"name": "<string>",
			"uuid": "<string>",
			"local": true
		},
		"Orgc": {
			"id": "<string>",
			"name": "<string>",
			"uuid": "<string>",
			"local": true
		},
		"Attribute": [],
		"ShadowAttribute": [],
		"RelatedEvent": [],
		"Galaxy": [],
		"Object": [],
		"EventReport": [],
		"CryptographicKey": []
	}
}
```

## Workflow Library Example

[Create Event with Misp and Send Results Via Email](https://library.blinkops.com/workflows/create-event-with-misp-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-misp-and-send-results-via-email/canvas" />
</div>
