Response indicating an event was accepted for processing
{ "$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 } } }