Datadog · JSON Structure

Datadog Events Event Create Response Structure

Response indicating an event was accepted for processing

Type: object Properties: 2
AnalyticsDashboardsMonitoringPlatformT1Visualizations

EventCreateResponse is a JSON Structure definition published by Datadog, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status event_id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-structure/datadog-events-event-create-response-structure.json",
  "name": "EventCreateResponse",
  "description": "Response indicating an event was accepted for processing",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The status of the event creation request",
      "enum": [
        "ok"
      ],
      "example": "ok"
    },
    "event_id": {
      "type": "int64",
      "description": "The unique numeric identifier assigned to the created event",
      "example": 42
    }
  }
}