Skip to main content
FuseFuse
IntegrationsDatadogActions

Get Datadog incident

Get one incident by id. Requires incident_read.

Agent markdown

incidents.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
incident_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
titlestringYesminLength 1; maxLength 500
customer_impact_scopestringNomaxLength 4000
customer_impact_statusstringNominLength 1; maxLength 64
severitystringNomaxLength 32
statestringNominLength 1; maxLength 64
created_atstringNominLength 1; maxLength 64
modified_atstringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "incident_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "incident_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "customer_impact_scope": {
      "type": "string",
      "maxLength": 4000
    },
    "customer_impact_status": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "severity": {
      "type": "string",
      "maxLength": 32
    },
    "state": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "created_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "modified_at": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id",
    "title"
  ]
}