IntegrationsDatadogActions
Get Datadog dashboard
Get one dashboard by id. Requires dashboards_read.
dashboards.get · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
dashboard_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 |
description | string | No | maxLength 4000 |
layout_type | string | No | maxLength 64 |
url | string | No | maxLength 2048 |
created_at | string | No | minLength 1; maxLength 64 |
modified_at | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"dashboard_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"dashboard_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"title": {
"type": "string",
"minLength": 1,
"maxLength": 500
},
"description": {
"type": "string",
"maxLength": 4000
},
"layout_type": {
"type": "string",
"maxLength": 64
},
"url": {
"type": "string",
"maxLength": 2048
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"modified_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id",
"title"
]
}