IntegrationsDatadogActions
Search Datadog incidents
Search incidents by closed state filters. Requires incident_read. The adapter generates Datadog search syntax; callers cannot submit raw queries.
incidents.search · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
states | array<string> | No | minItems 1; maxItems 3 |
states[] | string | Yes | enum active | stable | resolved |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
incidents | array<object> | Yes | maxItems 100 |
incidents[] | object | Yes | additionalProperties false |
incidents[].id | string | Yes | minLength 1; maxLength 128 |
incidents[].title | string | Yes | minLength 1; maxLength 500 |
incidents[].customer_impact_scope | string | No | maxLength 4000 |
incidents[].customer_impact_status | string | No | minLength 1; maxLength 64 |
incidents[].severity | string | No | maxLength 32 |
incidents[].state | string | No | minLength 1; maxLength 64 |
incidents[].created_at | string | No | minLength 1; maxLength 64 |
incidents[].modified_at | string | No | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"states": {
"type": "array",
"items": {
"type": "string",
"enum": [
"active",
"stable",
"resolved"
]
},
"minItems": 1,
"maxItems": 3
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"incidents": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"incidents"
]
}