Datadog · Schema

EventCreateResponse

Response indicating an event was accepted for processing

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
status string The status of the event creation request
event_id integer The unique numeric identifier assigned to the created event
View JSON Schema on GitHub

JSON Schema

datadog-events-event-create-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-events-event-create-response-schema.json",
  "title": "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": "integer",
      "format": "int64",
      "description": "The unique numeric identifier assigned to the created event",
      "example": 42
    }
  }
}