Skip to main content
FuseFuse
IntegrationsDatadogActions

Get Datadog event

Get one event by id. Requires events_read.

Agent markdown

events.get · Datadog · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
event_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
titlestringYesminLength 1; maxLength 500
messagestringNomaxLength 4000
timestampstringNominLength 1; maxLength 64
categorystringNomaxLength 64
statusstringNominLength 1; maxLength 64
tagsarray<string>YesmaxItems 100
tags[]stringYesminLength 1; maxLength 200

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "event_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "event_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "message": {
      "type": "string",
      "maxLength": 4000
    },
    "timestamp": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "category": {
      "type": "string",
      "maxLength": 64
    },
    "status": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      },
      "maxItems": 100
    }
  },
  "required": [
    "id",
    "title",
    "tags"
  ]
}