IntegrationsDatadogActions
Get Datadog incident
Get one incident by id. Requires incident_read.
incidents.get · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
incident_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
title | string | Yes | minLength 1; maxLength 500 |
customer_impact_scope | string | No | maxLength 4000 |
customer_impact_status | string | No | minLength 1; maxLength 64 |
severity | string | No | maxLength 32 |
state | string | No | minLength 1; maxLength 64 |
created_at | string | No | minLength 1; maxLength 64 |
modified_at | string | No | minLength 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"
]
}