IntegrationsDatadogActions
Get Datadog event
Get one event by id. Requires events_read.
events.get · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
event_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 |
message | string | No | maxLength 4000 |
timestamp | string | No | minLength 1; maxLength 64 |
category | string | No | maxLength 64 |
status | string | No | minLength 1; maxLength 64 |
tags | array<string> | Yes | maxItems 100 |
tags[] | string | Yes | minLength 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"
]
}